* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-primary: 'Nunito', sans-serif;
    --font-secondary: 'Lato', sans-serif;
    --color-dark: #1d1e20;
    --color-gray: #727586;
    --color-light: #fff;
    --color-footer-bg: #49230f;
    --color-sticky-bar: #49230f;
    /* Header height for panel positioning */
    --header-height: 84px;
    /* Chestnut Browns */
    --chestnut: #7a3c19;
    --chestnut-dark: #593014;
    --chestnut-rich: #49230f;
    /* Caramel & Honey */
    --caramel: #D4A574;
    --caramel-light: #E5C9A8;
    --honey: #E8B544;
    --honey-warm: #F5C25D;
    /* Cream & Warm Whites */
    --cream: #FDF8F3;
    --cream-warm: #F7EDE2;
    --cream-dark: #EDE0D4;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-dark);
    background-color: var(--color-light);
}

/* Sticky Bar */
.sticky-bar {
    background-color: #1a1a1a;
    padding: 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 101;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sticky-bar:hover {
    background-color: #4a3c28;
}

.sticky-bar__content {
    max-width: 1224px;
    width: 100%;
    padding: 0 16px;
    text-align: center;
}

.sticky-bar__text {
    font-family: 'Nunito', sans-serif;
    color: var(--cream);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.sticky-bar__text strong {
    font-weight: 900;
}

/* Header */
.header {
    background-color: #1a1a1a;
    padding: 20px 16px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease, padding 0.3s ease;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 14px 16px;
}

.header__container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
}

.header__logo {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--cream);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__logo:hover {
    color: var(--caramel-light);
}

.header__logo-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--cream);
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: block;
    flex-shrink: 0;
}

.header__logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.4);
}

.header__nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.header__nav-header {
    display: none;
}

.header__nav-close {
    display: none;
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.header__nav-link {
    font-family: 'Nunito', sans-serif;
    color: var(--caramel-light);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.header__nav-link:hover {
    color: var(--cream);
    transform: translateY(-1px);
}

.header__nav-link--active {
    color: var(--cream);
    font-weight: 700;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header__social-link {
    color: var(--caramel-light);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid var(--caramel-light);
    border-radius: 50%;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.header__social-link:hover {
    background-color: var(--caramel-light);
    border-color: var(--caramel-light);
    color: var(--chestnut-rich);
}

.header__social-icon {
    width: 20px;
    height: 20px;
}

.header__cart {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    margin-right: 16px;
}

.header__cart:hover {
    opacity: 0.8;
}

.header__cart-icon {
    width: 24px;
    height: 24px;
    -webkit-tap-highlight-color: transparent;
}

.header__cart-icon path {
    fill: var(--caramel-light);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--honey);
    color: var(--chestnut-rich);
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    padding: 0 4px;
    font-family: 'Nunito', sans-serif;
}


/* Mobile Menu Toggle */
.header__menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 102;
    margin-right: 12px;
}

.header__menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--caramel-light);
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.header__menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Main Content */
.main-content {
    padding: 40px 16px;
    max-width: 1224px;
    margin: 0 auto;
    background-color: var(--cream);
    min-height: 100vh;
}

body.products-page {
    background-color: var(--cream);
}

.products-section {
    width: 100%;
    padding: 30px 40px;
}

.products-section__header {
    margin-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 24px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.products-section__header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.products-section__title {
    font-family: 'Nunito', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    color: rgb(26, 26, 26);
    margin: 0;
}

.products-section__filters {
    display: flex;
    align-items: center;
    gap: 20px;
}

.filter-select {
    padding: 10px 36px 10px 14px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    color: #333;
}

.filter-select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1a1a1a;
}

@media (min-width: 769px) {
    .products-section__header {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 20px 8px;
    }
    
    .products-section__header {
        padding-left: 0;
        padding-right: 0;
    }
    
    .products-section__header-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .products-section__filters {
        width: 100%;
        justify-content: space-between;
    }
    
    .products-grid {
        padding: 0 8px;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 769px) {
    .products-grid {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        gap: 20px;
        padding: 0 24px;
    }
    
    .products-section__header {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.product-card__image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
}

.product-card__image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card__image {
    transform: scale(1.03);
}

.product-card__content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card__title {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    transition: color 0.2s;
}

.product-card__title:hover {
    color: #666;
}

.product-card__price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card__price {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.product-card__price--sale {
    color: #c41e3a;
}

.product-card__original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.product-card__button {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    width: 100%;
    margin-top: 6px;
}

.product-card__button:hover {
    background-color: #333;
    transform: translateY(-1px);
}

.product-card__button:active {
    transform: translateY(0);
}

/* Product Labels */
.product-label {
    display: inline-block;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.product-label--new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.product-label--sale {
    background: #c41e3a;
    color: #fff;
}

.product-label--bestseller {
    background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    color: #fff;
}

.product-label--handmade {
    background: #1a1a1a;
    color: #fff;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: rgb(255, 255, 255);
}

.footer__main {
    padding: 60px 24px 50px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.footer__container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 1.5fr;
    gap: 32px;
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__column--newsletter {
    grid-column: span 1;
    padding-left: 32px;
    border-left: 1px solid rgba(212, 165, 116, 0.2);
}

.footer__heading {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: var(--caramel-light);
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__link {
    font-family: 'Nunito', sans-serif;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.footer__link:hover {
    color: var(--caramel-light);
    transform: translateX(2px);
}

.footer__newsletter-text {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: rgb(255, 255, 255);
    margin-bottom: 16px;
}

.footer__newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.footer__newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background-color: var(--cream);
    color: var(--chestnut-dark);
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    outline: none;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(73, 48, 15, 0.2);
}

.footer__newsletter-input::placeholder {
    color: var(--chestnut);
}

.footer__newsletter-input:focus {
    box-shadow: 0 4px 16px rgba(73, 48, 15, 0.3);
}

.footer__newsletter-button {
    padding: 14px 28px;
    background-color: var(--honey);
    color: var(--chestnut-rich);
    border: none;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(73, 48, 15, 0.2);
}

.footer__newsletter-button:hover {
    background-color: var(--honey-warm);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(73, 48, 15, 0.3);
}

.footer__social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer__social-link {
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 50%;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.footer__social-link:hover {
    background-color: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
    color: var(--chestnut-rich);
}

.footer__social-icon {
    width: 20px;
    height: 20px;
}

.footer__bottom {
    padding: 20px 16px;
}

.footer__bottom-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__copyright {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: rgb(255, 255, 255);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal-link {
    font-family: 'Nunito', sans-serif;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
}

.footer__legal-link:hover {
    color: var(--caramel-light);
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --header-height: 66px;
    }
    
    .header {
        padding: 11px 16px;
    }

    .header__container {
        justify-content: center;
        position: relative;
    }

    .header__menu-toggle {
        position: absolute;
        left: 0;
    }

    .header__logo {
        margin-right: 0;
    }

    .header__right {
        position: absolute;
        right: 0;
    }

    .header__nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 280px;
        height: calc(100vh - var(--header-height));
        background: #1a1a1a;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        z-index: 110;
        overflow: hidden;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .header__nav.active {
        transform: translateX(0);
        z-index: 110;
    }

    .header__nav-header {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 24px;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
        flex-shrink: 0;
    }

    .header__nav-header h2 {
        margin: 0;
        font-family: 'Nunito', sans-serif;
        font-size: 22px;
        font-weight: 800;
        color: var(--cream);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .header__nav-close {
        display: flex;
        background: none;
        border: none;
        font-size: 32px;
        cursor: pointer;
        color: var(--caramel-light);
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        padding: 0;
        transition: color 0.2s;
    }

    .header__nav-close:hover {
        color: var(--cream);
    }

    .header__nav-body {
        flex: 1;
        overflow-y: auto;
        padding: 24px;
    }

    .header__nav-list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .header__nav-list li {
        width: 100%;
    }

    .header__nav-link {
        display: block;
        padding: 16px 0;
        font-size: 17px;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    }

    .header__nav-list li:last-child .header__nav-link {
        border-bottom: none;
    }

    .header__social {
        display: none;
    }

    .header__menu-toggle {
        display: flex;
    }


    .main-content {
        padding: 30px 16px;
    }

    .products-section__title {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 19px;
    }

    .footer__main {
        padding: 40px 16px 32px;
    }

    .footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .footer__column--newsletter {
        grid-column: span 2;
        padding-left: 0;
        border-left: none;
        padding-top: 32px;
        border-top: 1px solid rgba(212, 165, 116, 0.2);
    }

    .footer__newsletter-form {
        max-width: 320px;
    }

    .footer__bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer__legal {
        justify-content: center;
    }

    .sticky-bar__content {
        padding: 0 16px;
    }
}


/* Cart Panel */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: 420px;
    max-width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    background: #fff;
    z-index: 102;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
}

.cart-panel.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #eee;
}

.cart-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.cart-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.cart-close:hover {
    color: #000;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty {
    text-align: center;
    color: #888;
    padding: 80px 20px;
    font-size: 16px;
}

.cart-empty::before {
    content: '🛒';
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    background: #f5f5f5;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-item-name {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
}

.cart-item-price {
    color: #666;
    font-size: 14px;
}

.cart-item-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-price--sale {
    color: #c41e3a;
    font-weight: 600;
}

.cart-item-original-price {
    color: #999;
    font-size: 13px;
    text-decoration: line-through;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.cart-item-qty button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-qty button:hover {
    background: #f0f0f0;
    border-color: #999;
}

.cart-item-qty button:active {
    transform: scale(0.95);
}

.cart-item-qty span {
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    font-size: 24px;
    color: #bbb;
    cursor: pointer;
    transition: color 0.2s;
    align-self: flex-start;
}

.cart-item-remove:hover {
    color: #e74c3c;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid #eee;
    background: linear-gradient(to bottom, #fafafa, #f5f5f5);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.cart-total-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-total-row #cart-total {
    font-size: 22px;
}

.cart-total--sale {
    color: #c41e3a;
}

.cart-original-total {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.cart-savings {
    color: #c41e3a;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: right;
}

.cart-checkout-btn {
    width: 100%;
    padding: 18px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.cart-checkout-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cart-checkout-btn:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .cart-panel {
        width: 100%;
    }
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 20px;
}

.product-modal.open {
    opacity: 1;
    visibility: visible;
}

.product-modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    max-height: 90dvh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.product-modal.open .product-modal-content {
    transform: scale(1);
}

.product-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}

.product-modal-close:hover {
    transform: scale(1.1);
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

/* Gallery / Carousel */
.product-modal-gallery {
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    min-height: 0;
}

.gallery-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
}

.gallery-main img {
    max-width: 100%;
    max-height: 550px;
    object-fit: contain;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s;
    opacity: 0;
}

.product-modal-gallery:hover .gallery-arrow {
    opacity: 1;
}

.gallery-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: all 0.2s;
}

.gallery-dot.active {
    background: #1a1a1a;
    transform: scale(1.2);
}

.gallery-dot:hover:not(.active) {
    background: #999;
}

.product-modal-info {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

.product-modal-info h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #1a1a1a;
}

/* Modal label */
.modal-label-wrapper {
    margin-bottom: 8px;
}

.modal-label-wrapper .product-label {
    position: static;
}

/* Modal price */
.product-modal-price-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.product-modal-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.product-modal-price-original {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.product-modal-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 20px 0;
}

/* Product details list */
.product-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-details-list li {
    font-size: 14px;
    color: #666;
    padding-left: 20px;
    position: relative;
}

.product-details-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 600;
}

/* Variant Selectors */
.variant-selectors {
    margin-bottom: 24px;
}

.variant-group {
    margin-bottom: 20px;
}

.variant-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.variant-select {
    width: 100%;
    padding: 14px 16px;
    padding-right: 40px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.variant-select:focus {
    outline: none;
    border-color: #1a1a1a;
}

/* Color select with indicator */
.color-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.color-indicator-display {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    flex-shrink: 0;
}

.color-select {
    padding-left: 48px;
}

/* Size options */
.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-btn {
    flex: 1;
    min-width: 80px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.size-btn:hover {
    border-color: #999;
    background: #f8f8f8;
}

.size-btn.active {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.size-btn:active {
    transform: scale(0.98);
}

/* Quantity Counter */
.quantity-counter {
    margin-bottom: 20px;
}

.quantity-counter label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-btn {
    width: 44px;
    height: 44px;
    background: #fff;
    border: none;
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #f5f5f5;
}

.quantity-btn:active {
    background: #eee;
}

.quantity-value {
    width: 50px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    border-left: 2px solid #e5e5e5;
    border-right: 2px solid #e5e5e5;
    padding: 10px 0;
}

/* Add to bag button */
.product-modal-add {
    width: 100%;
    padding: 16px 32px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-modal-add:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-modal-add:active {
    transform: translateY(0);
}

#modal-add-price {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .product-modal-body {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    
    .product-modal-gallery {
        max-height: 50vh;
        max-height: 50dvh;
    }
    
    .gallery-main {
        padding: 24px;
        min-height: 200px;
    }
    
    .gallery-main img {
        max-height: 250px;
    }
    
    .gallery-arrow {
        opacity: 1;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .product-modal-info {
        padding: 24px;
        overflow-y: auto;
    }
    
    .product-modal-info h2 {
        font-size: 22px;
    }
    
    .product-modal-price {
        font-size: 22px;
    }
    
    .quantity-controls {
        width: 100%;
        justify-content: center;
    }
    
    .product-modal-add {
        padding: 14px 24px;
    }
}

/* Coming Soon Modal */
.coming-soon-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 20px;
}

.coming-soon-modal.open {
    opacity: 1;
    visibility: visible;
}

.coming-soon-content {
    background: #fff;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.coming-soon-modal.open .coming-soon-content {
    transform: scale(1);
}

.coming-soon-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.coming-soon-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

.coming-soon-image {
    background: linear-gradient(145deg, #fdf8f3 0%, #f5ebe0 50%, #ede4d9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Decorative origami triangle shapes */
.origami-deco {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0.15;
    z-index: 1;
}

.origami-deco-1 {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--honey);
    top: 10%;
    left: 8%;
    transform: rotate(-15deg);
    animation: floatDeco 8s ease-in-out infinite;
}

.origami-deco-2 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid var(--chestnut);
    bottom: 15%;
    right: 12%;
    transform: rotate(25deg);
    animation: floatDeco 6s ease-in-out infinite reverse;
}

.origami-deco-3 {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 44px solid #1a1a1a;
    top: 60%;
    left: 5%;
    transform: rotate(10deg);
    opacity: 0.08;
    animation: floatDeco 10s ease-in-out infinite 1s;
}

/* Sparkle decorations */
.origami-sparkle {
    position: absolute;
    font-size: 14px;
    color: var(--honey);
    opacity: 0;
    z-index: 1;
    animation: sparkle 3s ease-in-out infinite;
}

.origami-sparkle-1 {
    top: 18%;
    right: 20%;
    animation-delay: 0s;
}

.origami-sparkle-2 {
    bottom: 25%;
    left: 15%;
    animation-delay: 1s;
    font-size: 10px;
}

.origami-sparkle-3 {
    top: 40%;
    right: 8%;
    animation-delay: 2s;
    font-size: 18px;
    color: var(--chestnut);
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.8) rotate(0deg); }
    50% { opacity: 0.7; transform: scale(1.2) rotate(15deg); }
}

@keyframes floatDeco {
    0%, 100% { transform: translateY(0) rotate(var(--base-rotate, 0deg)); }
    50% { transform: translateY(-10px) rotate(calc(var(--base-rotate, 0deg) + 5deg)); }
}

/* Mystery box wrapper with 3D float effect */
.mystery-box-wrapper {
    position: relative;
    z-index: 2;
    transform: perspective(800px) rotateY(-8deg) rotateX(3deg) scale(1.25);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: floatBox 4s ease-in-out infinite;
    margin: 20px 0;
}

.mystery-box-wrapper::before {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 25px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, transparent 70%);
    filter: blur(10px);
    z-index: -1;
    animation: shadowPulse 4s ease-in-out infinite;
}

@keyframes floatBox {
    0%, 100% { transform: perspective(800px) rotateY(-8deg) rotateX(3deg) scale(1.25) translateY(0); }
    50% { transform: perspective(800px) rotateY(-5deg) rotateX(5deg) scale(1.25) translateY(-12px); }
}

@keyframes shadowPulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(0.85); }
}

.coming-soon-image:hover .mystery-box-wrapper {
    transform: perspective(800px) rotateY(0deg) rotateX(0deg) translateY(-8px) scale(1.3);
}

.coming-soon-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Blend white background with the cream background */
    mix-blend-mode: multiply;
    /* Slightly reduce contrast to blend better */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2)) contrast(0.95) saturate(1.05);
    opacity: 0.92;
}

.coming-soon-placeholder {
    font-size: 80px;
    opacity: 0.5;
}

.coming-soon-form {
    padding: 30px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coming-soon-form h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 20px 0;
    padding-top: 20px;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.coming-soon-form > p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin: 0 0 16px 0;
}

.coming-soon-form > p:last-of-type {
    margin-bottom: 24px;
}

.coming-soon-form > p strong {
    color: var(--chestnut);
    font-weight: 800;
    font-size: 18px;
}

#signup-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

#signup-email {
    padding: 18px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: var(--font-secondary);
}

#signup-email:focus {
    outline: none;
    border-color: #764ba2;
    box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.1);
}

#signup-form button {
    padding: 18px 20px;
    background-color: var(--honey);
    color: var(--chestnut-rich);
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    font-family: var(--font-primary);
}

#signup-form button:hover {
    background-color: var(--honey-warm);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(73, 48, 15, 0.3);
}

.signup-note {
    font-size: 13px;
    color: #999;
    margin-top: 12px;
    text-align: center;
}

.coming-soon-form .signup-consent {
    font-size: 14px;
    color: #666;
    margin-top: 24px;
    padding-top: 20px;
    text-align: left;
    line-height: 1.5;
}

.coming-soon-form .signup-consent a {
    color: var(--chestnut);
    text-decoration: underline;
    font-weight: 600;
}

.coming-soon-form .signup-consent a:hover {
    color: var(--chestnut-dark);
}

.signup-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.signup-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.signup-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.signup-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.signup-disclaimer {
    font-size: 12px;
    color: #999;
    margin-top: 16px;
    text-align: left;
    font-style: italic;
    line-height: 1.6;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.signup-success {
    text-align: center;
    font-size: 18px;
    color: #22c55e;
    font-weight: 600;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .coming-soon-modal {
        align-items: flex-start;
        padding: 10px;
        overflow-y: auto;
    }
    
    .coming-soon-content {
        max-height: 90vh;
        overflow-y: auto;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .coming-soon-body {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }
    
    .coming-soon-image {
        /* Make image section 1/3 of viewport height */
        min-height: 33vh;
        max-height: 40vh;
        padding: 30px 20px;
        flex-shrink: 0;
    }
    
    /* Smaller decorative elements on mobile */
    .origami-deco-1 {
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 35px solid var(--honey);
    }
    
    .origami-deco-2 {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 26px solid var(--chestnut);
    }
    
    .origami-deco-3 {
        display: none;
    }
    
    .origami-sparkle {
        font-size: 8px;
    }
    
    .origami-sparkle-3 {
        font-size: 10px;
    }
    
    .mystery-box-wrapper {
        transform: perspective(600px) rotateY(-5deg) rotateX(2deg) scale(1.1);
        margin: 5px 0;
    }
    
    @keyframes floatBox {
        0%, 100% { transform: perspective(600px) rotateY(-5deg) rotateX(2deg) scale(1.1) translateY(0); }
        50% { transform: perspective(600px) rotateY(-3deg) rotateX(3deg) scale(1.1) translateY(-6px); }
    }
    
    .coming-soon-image img {
        max-height: 180px;
    }
    
    .coming-soon-form {
        padding: 20px 18px 24px;
        flex: 1;
    }
    
    .coming-soon-form h2 {
        font-size: 24px;
        margin-bottom: 12px;
        padding-top: 0;
    }
    
    .coming-soon-form > p {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.6;
    }
    
    .coming-soon-form > p:last-of-type {
        margin-bottom: 20px;
    }
    
    .coming-soon-form > p strong {
        font-size: 15px;
    }
    
    .coming-soon-form .signup-consent {
        margin-top: 16px;
        padding-top: 12px;
        font-size: 13px;
    }
    
    #signup-form {
        gap: 12px;
        margin-top: 4px;
    }
    
    #signup-email {
        padding: 16px 18px;
        font-size: 15px;
    }
    
    #signup-form button {
        padding: 16px 18px;
        font-size: 16px;
    }
}

/* ============================================
   HOMEPAGE STYLES - LEGO-inspired Design
   ============================================ */

/* Homepage body */
.home-page {
    background: #1a1a1a;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: var(--cream-warm);
    padding: 40px 24px;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.05;
    color: var(--chestnut-rich);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: rgba(73, 48, 15, 0.85);
    margin-bottom: 28px;
    max-width: 400px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: var(--honey);
    color: var(--chestnut-rich);
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(73, 48, 15, 0.2);
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
    background-color: var(--honey-warm);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(73, 48, 15, 0.3);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

/* Hero Email Signup Form */
.hero-signup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
    max-width: 400px;
}

.hero-signup-email {
    padding: 12px 18px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 50px;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: var(--font-secondary);
    background-color: white;
}

.hero-signup-email:focus {
    outline: none;
    border-color: var(--honey);
    box-shadow: 0 0 0 3px rgba(255, 200, 87, 0.2);
}

.hero-signup-email:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

.hero-signup-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: var(--honey);
    color: var(--chestnut-rich);
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(73, 48, 15, 0.2);
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.hero-signup-submit-btn:hover:not(:disabled) {
    background-color: var(--honey-warm);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(73, 48, 15, 0.3);
}

.hero-signup-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.hero-signup-submit-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.hero-signup-submit-btn:hover:not(:disabled) svg {
    transform: translateX(4px);
}

.hero-signup-consent {
    font-size: 13px;
    color: #666;
    margin-top: 12px;
    text-align: left;
    line-height: 1.5;
}

.hero-signup-consent a {
    color: var(--chestnut);
    text-decoration: underline;
}

.hero-signup-consent a:hover {
    color: var(--chestnut-rich);
}

.hero-signup-message {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    min-height: 0;
    display: none;
}

.hero-signup-message:not(:empty) {
    display: block;
    margin-top: 4px;
    margin-bottom: 0;
}

.hero-signup-message.success {
    color: #10b981;
}

.hero-signup-message.error {
    color: #ef4444;
}

.hero-signup-message.info {
    color: #3b82f6;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(73, 48, 15, 0.35);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.sale-badge {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: var(--chestnut-rich);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(73, 48, 15, 0.5);
    animation: pulse 2s ease-in-out infinite;
    z-index: 3;
}

.sale-badge span {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #000000;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Announcement Bar */
.home-announcement {
    background: linear-gradient(90deg, #FFB800 0%, #FFCD00 50%, #FFB800 100%);
    padding: 12px 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.home-announcement span {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
}

.home-announcement strong {
    font-weight: 900;
}

.home-announcement a {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: #1a1a1a;
    text-decoration: none;
    background: rgba(0,0,0,0.1);
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.2s;
}

.home-announcement a:hover {
    background: rgba(0,0,0,0.2);
}

/* Navigation Tabs */
.home-nav {
    background: #1a1a1a;
    padding: 20px 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.home-nav__tabs {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
}

.home-nav__tab {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding-bottom: 16px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.home-nav__tab:hover {
    color: #fff;
}

.home-nav__tab--active {
    color: #fff;
    border-bottom-color: #fff;
}

/* Category Cards Section */
.category-cards {
    background: #1a1a1a;
    padding: 28px 24px 40px;
    overflow: hidden;
}

.category-cards__carousel {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-card {
    position: relative;
    width: 180px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Category Card Colors */
.category-card--coral {
    background: linear-gradient(145deg, #FF6B6B 0%, #EE5A5A 100%);
}

.category-card--teal {
    background: linear-gradient(145deg, #26D0CE 0%, #1A9B9A 100%);
}

.category-card--amber {
    background: linear-gradient(145deg, #FFB800 0%, #E5A500 100%);
}

.category-card--rose {
    background: linear-gradient(145deg, #FF6B95 0%, #E55A7F 100%);
}

.category-card--slate {
    background: linear-gradient(145deg, #667eea 0%, #5568d3 100%);
}

.category-card__label {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
}

.category-card__img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

/* Random tilts for internal rectangles */
.category-card:nth-child(1) .category-card__img,
.category-card:nth-child(1) .category-card__badge,
.category-card:nth-child(1) .category-card__icon {
    transform: rotate(-5deg);
}

.category-card:nth-child(2) .category-card__img,
.category-card:nth-child(2) .category-card__badge,
.category-card:nth-child(2) .category-card__icon {
    transform: rotate(4deg);
}

.category-card:nth-child(3) .category-card__img,
.category-card:nth-child(3) .category-card__badge,
.category-card:nth-child(3) .category-card__icon {
    transform: rotate(-3deg);
}

.category-card:nth-child(4) .category-card__img,
.category-card:nth-child(4) .category-card__badge,
.category-card:nth-child(4) .category-card__icon {
    transform: rotate(6deg);
}

.category-card:nth-child(5) .category-card__img,
.category-card:nth-child(5) .category-card__badge,
.category-card:nth-child(5) .category-card__icon {
    transform: rotate(-2deg);
}

.category-card:nth-child(6) .category-card__img,
.category-card:nth-child(6) .category-card__badge,
.category-card:nth-child(6) .category-card__icon {
    transform: rotate(5deg);
}

.category-card:nth-child(7) .category-card__img,
.category-card:nth-child(7) .category-card__badge,
.category-card:nth-child(7) .category-card__icon {
    transform: rotate(-4deg);
}

.category-card:nth-child(8) .category-card__img,
.category-card:nth-child(8) .category-card__badge,
.category-card:nth-child(8) .category-card__icon {
    transform: rotate(3deg);
}

.category-card:hover .category-card__img {
    transform: scale(1.08) rotate(3deg);
}

.category-card:nth-child(1):hover .category-card__img {
    transform: scale(1.08) rotate(-2deg);
}

.category-card:nth-child(2):hover .category-card__img {
    transform: scale(1.08) rotate(7deg);
}

.category-card:nth-child(3):hover .category-card__img {
    transform: scale(1.08) rotate(0deg);
}

.category-card:nth-child(4):hover .category-card__img {
    transform: scale(1.08) rotate(9deg);
}

.category-card:nth-child(5):hover .category-card__img {
    transform: scale(1.08) rotate(1deg);
}

.category-card:nth-child(6):hover .category-card__img {
    transform: scale(1.08) rotate(8deg);
}

.category-card:nth-child(7):hover .category-card__img {
    transform: scale(1.08) rotate(-1deg);
}

.category-card:nth-child(8):hover .category-card__img {
    transform: scale(1.08) rotate(6deg);
}

.category-card:hover .category-card__badge,
.category-card:hover .category-card__icon {
    transform: scale(1.1);
}

.category-card:nth-child(1):hover .category-card__badge,
.category-card:nth-child(1):hover .category-card__icon {
    transform: scale(1.1) rotate(-5deg);
}

.category-card:nth-child(2):hover .category-card__badge,
.category-card:nth-child(2):hover .category-card__icon {
    transform: scale(1.1) rotate(4deg);
}

.category-card:nth-child(3):hover .category-card__badge,
.category-card:nth-child(3):hover .category-card__icon {
    transform: scale(1.1) rotate(-3deg);
}

.category-card:nth-child(4):hover .category-card__badge,
.category-card:nth-child(4):hover .category-card__icon {
    transform: scale(1.1) rotate(6deg);
}

.category-card:nth-child(5):hover .category-card__badge,
.category-card:nth-child(5):hover .category-card__icon {
    transform: scale(1.1) rotate(-2deg);
}

.category-card:nth-child(6):hover .category-card__badge,
.category-card:nth-child(6):hover .category-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card:nth-child(7):hover .category-card__badge,
.category-card:nth-child(7):hover .category-card__icon {
    transform: scale(1.1) rotate(-4deg);
}

.category-card:nth-child(8):hover .category-card__badge,
.category-card:nth-child(8):hover .category-card__icon {
    transform: scale(1.1) rotate(3deg);
}

.category-card__badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 80px;
    background: rgba(255,255,255,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.category-card__icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    font-size: 40px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

/* Home Divider */
.home-divider {
    background: #1a1a1a;
    margin-top: -1px;
}

.home-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Home Products Section */
.home-products {
    background: var(--cream-warm);
    padding: 35px 24px;
}

.home-products--alt {
    background: var(--cream);
}

.home-products__header {
    max-width: 1200px;
    margin: 0 auto 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-products__title {
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--chestnut-dark);
    margin: 0;
    position: relative;
}

.home-products__title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--chestnut-dark);
    border-radius: 2px;
}

.home-products__nav {
    display: flex;
    gap: 8px;
}

.home-products__arrow {
    width: 44px;
    height: 44px;
    border: 2px solid var(--chestnut);
    border-radius: 50%;
    background: transparent;
    color: var(--chestnut);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.home-products__arrow:hover {
    background: var(--chestnut);
    color: #fff;
}

.home-products__arrow svg {
    width: 20px;
    height: 20px;
}

.home-products__link {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--chestnut);
    text-decoration: none;
    transition: color 0.2s;
}

.home-products__link:hover {
    color: var(--chestnut-dark);
}

/* Products Carousel */
.home-products__carousel {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.home-products__carousel::-webkit-scrollbar {
    display: none;
}

/* Home Product Card */
.home-product {
    flex: 0 0 auto;
    width: 200px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e5e5;
}

.home-product:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(73, 48, 15, 0.15);
}

.home-product__image-wrap {
    position: relative;
    background: #f8f8f8;
    overflow: hidden;
}

.home-product__image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.home-product:hover .home-product__image {
    transform: scale(1.05);
}

.home-product__badge {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFB800;
    color: #1a1a1a;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 4px;
    z-index: 2;
}

.home-product__badge--sale {
    background: #c41e3a;
    color: #fff;
}

.home-product__badge--new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.home-product__info {
    padding: 16px;
}

.home-product__name {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.3;
}

.home-product__price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-product__price {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
}

.home-product__price--sale {
    color: #c41e3a;
}

.home-product__original {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.home-product__button {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 10px 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    width: 100%;
    margin-top: 8px;
}

.home-product__button:hover {
    background-color: #333;
    transform: translateY(-1px);
}

.home-product__button:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .home-announcement {
        padding: 10px 16px;
        gap: 10px;
    }
    
    .home-announcement span {
        font-size: 13px;
    }
    
    .home-nav {
        padding: 16px 16px 0;
    }
    
    .home-nav__tabs {
        gap: 24px;
    }
    
    .home-nav__tab {
        font-size: 14px;
        padding-bottom: 12px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 28px 16px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        padding-left: 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin: 0 auto 24px;
    }
    
    .hero-signup-form {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-signup-email {
        font-size: 15px;
        padding: 10px 16px;
    }
    
    .hero-signup-submit-btn {
        font-size: 15px;
        padding: 14px 28px;
    }
    
    .hero-signup-consent {
        font-size: 12px;
        text-align: center;
    }
    
    .hero-signup-message {
        text-align: center;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .hero-image {
        max-width: 280px;
        transform: rotate(0deg);
    }
    
    .sale-badge {
        width: 70px;
        height: 70px;
        top: -10px;
        right: 20px;
    }
    
    .sale-badge span {
        font-size: 22px;
    }
    
    .category-cards {
        padding: 20px 16px 28px;
    }
    
    .category-cards__carousel {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 14px;
        padding-right: 16px;
    }
    
    .category-cards__carousel::-webkit-scrollbar {
        display: none;
    }
    
    .category-card {
        width: 150px;
        height: 170px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .category-card__label {
        font-size: 15px;
        top: 12px;
        left: 12px;
    }
    
    .category-card__img {
        width: 80px;
        height: 110px;
        margin: 8px;
        border-radius: 10px;
    }
    
    .category-card__badge {
        width: 50px;
        height: 65px;
        font-size: 36px;
        bottom: 12px;
        right: 12px;
        border-radius: 10px;
    }
    
    .category-card__icon {
        width: 50px;
        height: 65px;
        font-size: 32px;
        bottom: 12px;
        right: 12px;
        border-radius: 10px;
    }
    
    .home-products {
        padding: 28px 16px;
    }
    
    .home-products__title {
        font-size: 22px;
    }
    
    .home-products__nav {
        display: none;
    }
    
    .home-product {
        width: 170px;
    }
    
    .home-product__name {
        font-size: 13px;
    }
    
    .home-product__price {
        font-size: 15px;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-page {
    background: #1a1a1a;
}

/* About Hero */
.about-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 100%);
    padding: 30px 0;
    overflow: hidden;
}

.about-hero__container {
    max-width: 100%;
    margin: 0;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-hero__badge {
    display: inline-block;
    background: var(--chestnut-rich);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.about-hero__title {
    font-family: 'Nunito', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--chestnut-rich);
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.about-hero__subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--chestnut);
    max-width: 600px;
    margin: 0 auto;
}

/* Decorative shapes */
.about-hero__visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.about-hero__shape {
    position: absolute;
    border-radius: 20px;
    opacity: 0.12;
}

.about-hero__shape--1 {
    width: 200px;
    height: 200px;
    background: var(--honey-warm);
    top: 20%;
    left: 5%;
    transform: rotate(-15deg);
    animation: float1 8s ease-in-out infinite;
}

.about-hero__shape--2 {
    width: 150px;
    height: 150px;
    background: var(--honey);
    top: 10%;
    right: 10%;
    transform: rotate(20deg);
    animation: float2 10s ease-in-out infinite;
}

.about-hero__shape--3 {
    width: 100px;
    height: 100px;
    background: var(--caramel);
    bottom: 15%;
    right: 20%;
    transform: rotate(45deg);
    animation: float3 6s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    50% { transform: rotate(-15deg) translateY(-20px); }
}

@keyframes float2 {
    0%, 100% { transform: rotate(20deg) translateY(0); }
    50% { transform: rotate(20deg) translateY(15px); }
}

@keyframes float3 {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-10px); }
}

/* About Divider */
.about-divider {
    background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 100%);
    margin-top: -1px;
}

.about-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* About Section */
.about-section {
    background: var(--cream);
    padding: 60px 24px;
}

.about-section__container {
    max-width: 800px;
    margin: 0 auto;
}

/* About Card */
.about-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(73, 48, 15, 0.1);
}

.about-card--primary {
    border: 3px solid var(--cream-dark);
}

.about-card__icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.about-card__title {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--chestnut-rich);
    margin: 0 0 20px;
}

.about-card__text {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.about-card__text strong {
    color: var(--chestnut);
    font-weight: 700;
}

/* About Features */
.about-features {
    background: var(--cream);
    padding: 40px 24px 80px;
}

.about-features__container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-feature {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--cream-dark);
}

.about-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(73, 48, 15, 0.12);
}

.about-feature__icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.about-feature__icon-wrap--coral {
    background: linear-gradient(145deg, #FF6B6B 0%, #EE5A5A 100%);
}

.about-feature__icon-wrap--teal {
    background: linear-gradient(145deg, #26D0CE 0%, #1A9B9A 100%);
}

.about-feature__icon-wrap--amber {
    background: linear-gradient(145deg, #FFB800 0%, #E5A500 100%);
}

.about-feature__icon-wrap--rose {
    background: linear-gradient(145deg, #FF6B95 0%, #E55A7F 100%);
}

.about-feature__title {
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--chestnut-rich);
    margin: 0 0 12px;
}

.about-feature__text {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* About Image Section */
.about-image-section {
    background: var(--cream-warm);
    padding: 80px 24px;
}

.about-image-section__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-section__title {
    font-family: 'Nunito', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--chestnut-rich);
    margin: 0 0 24px;
    line-height: 1.2;
}

.about-image-section__text {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 16px;
}

.about-image-section__text strong {
    color: var(--chestnut);
    font-weight: 700;
}

.about-image-section__highlight {
    font-family: 'Nunito', sans-serif;
    font-size: 19px;
    line-height: 1.6;
    color: var(--chestnut-rich);
    margin: 24px 0 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(232, 181, 68, 0.15) 0%, rgba(245, 194, 93, 0.1) 100%);
    border-left: 4px solid var(--honey);
    border-radius: 8px;
}

.about-image-section__highlight strong {
    font-weight: 900;
    color: var(--chestnut-rich);
}

.about-image-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--honey);
    color: var(--chestnut-rich);
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 16px;
    box-shadow: 0 2px 8px rgba(73, 48, 15, 0.2);
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.about-image-section__cta:hover {
    background-color: var(--honey-warm);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(73, 48, 15, 0.3);
}

.about-image-section__cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.about-image-section__cta:hover svg {
    transform: translateX(4px);
}

.about-image-section__visual {
    position: relative;
}

.about-image-section__img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(73, 48, 15, 0.25);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.about-image-section__img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* About CTA Section */
.about-cta {
    background: #1a1a1a;
    padding: 80px 24px;
    text-align: center;
}

.about-cta__container {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta__title {
    font-family: 'Nunito', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--cream);
    margin: 0 0 16px;
}

.about-cta__text {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--caramel-light);
    margin: 0 0 32px;
}

.about-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.2s ease;
    min-width: 160px;
}

.about-cta__btn--primary {
    background-color: var(--honey);
    color: var(--chestnut-rich);
    box-shadow: 0 4px 16px rgba(232, 181, 68, 0.3);
}

.about-cta__btn--primary:hover {
    background-color: var(--honey-warm);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 181, 68, 0.4);
}

.about-cta__btn--secondary {
    background-color: transparent;
    color: var(--cream);
    border: 2px solid var(--caramel-light);
}

.about-cta__btn--secondary:hover {
    background-color: var(--caramel-light);
    color: var(--chestnut-rich);
    transform: translateY(-2px);
}

/* About Page Responsive */
@media (max-width: 900px) {
    .about-features__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 28px 0;
        min-height: auto;
    }
    
    .about-hero__container {
        padding: 0;
    }
    
    .about-hero__content {
        padding: 0 16px;
    }
    
    .about-hero__title {
        font-size: 36px;
    }
    
    .about-hero__subtitle {
        font-size: 17px;
    }
    
    .about-hero__shape--1 {
        width: 120px;
        height: 120px;
        left: -20px;
    }
    
    .about-hero__shape--2 {
        width: 100px;
        height: 100px;
        right: -10px;
    }
    
    .about-hero__shape--3 {
        width: 70px;
        height: 70px;
    }
    
    .about-section {
        padding: 40px 16px;
    }
    
    .about-card {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .about-card__icon {
        font-size: 44px;
    }
    
    .about-card__title {
        font-size: 26px;
    }
    
    .about-card__text {
        font-size: 16px;
    }
    
    .about-features {
        padding: 20px 16px 50px;
    }
    
    .about-features__container {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .about-feature {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .about-feature__icon-wrap {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        font-size: 26px;
    }
    
    .about-feature__title {
        font-size: 15px;
    }
    
    .about-feature__text {
        font-size: 13px;
    }
    
    .about-image-section {
        padding: 50px 16px;
    }
    
    .about-image-section__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image-section__visual {
        order: -1;
    }
    
    .about-image-section__img {
        max-width: 320px;
        margin: 0 auto;
        transform: rotate(0deg);
    }
    
    .about-image-section__title {
        font-size: 28px;
    }
    
    .about-image-section__text {
        font-size: 16px;
    }
    
    .about-image-section__highlight {
        font-size: 17px;
        padding: 16px 20px;
        margin: 20px 0 0;
    }
    
    .about-cta {
        padding: 50px 16px;
    }
    
    .about-cta__title {
        font-size: 28px;
    }
    
    .about-cta__text {
        font-size: 16px;
    }
    
    .about-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta__btn {
        width: 100%;
        max-width: 280px;
    }
}

