﻿:root {
    --primary: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #52796f;
    --bg-light: #f7f7f7;
    --bg-white: #ffffff;
    --text-dark: #121212;
    --text-body: #3d3d3d;
    --text-muted: #737373;
    --border: #e8e8e8;
    --hero-teal: #dceee9;
    --hero-bg-start: #f1f8f3;
    --hero-bg-end: #ffffff;
    --radius-sm: 8px;
    --radius: 10px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 3px rgba(18, 18, 18, 0.06);
    --shadow: 0 2px 8px rgba(18, 18, 18, 0.08);
    --shadow-hover: 0 8px 24px rgba(18, 18, 18, 0.12);
    --section-py: 72px;
    --container-max: 1280px;
    --grid-gap: 20px;
    --store-header-bar-height: 72px;
    --store-top-strip-height: 34px;
    --store-nav-border-width: 1px;
    --store-total-header-height: calc(
        var(--store-top-strip-height) + var(--store-header-bar-height) +
            var(--store-nav-border-width)
    );
    --store-logo-height: 56px;
    --store-logo-max-width: min(280px, 30vw);
    --store-logo-min-width: 120px;
    --store-footer-logo-height: 48px;
    --store-footer-logo-max-width: min(180px, 100%);
    --store-footer-logo-min-width: 100px;
    --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-heading:
        "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-tag: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --section-title-size: clamp(1.5rem, 2.4vw, 2rem);
    --section-header-gap: 2.5rem;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg-white);
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

p,
li,
label,
input,
textarea,
select,
.hero-subtitle,
.category-hero__desc,
.footer-brand p {
    font-family: var(--font-body);
}

.product-card__vendor,
.product-card__badge,
.category-section__eyebrow,
.category-hero__eyebrow {
    font-family: var(--font-tag);
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-heading,
.section-heading-left,
.category-section__title,
.category-hero__title,
.category-tile__title,
.product-name,
.brand-text,
.footer-col h6,
.footer-newsletter__copy h5,
.mobile-nav-drawer__title,
.top-strip {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-max);
    padding-left: 24px;
    padding-right: 24px;
}

/* Top strip */
.top-strip {
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 9px 24px;
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
    height: var(--store-top-strip-height);
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-strip span {
    opacity: 0.85;
    margin: 0 12px;
}

/* Navbar â€” Shopify 3-zone layout */
.main-navbar {
    background: var(--bg-white);
    padding: 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1030;
    overflow: visible;
    font-family: var(--font-body);
}

.main-navbar--has-logo {
    margin-bottom: 0;
}

.main-navbar > .container {
    position: relative;
    height: var(--store-header-bar-height);
    min-height: var(--store-header-bar-height);
    max-height: var(--store-header-bar-height);
    overflow: visible;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

.navbar-brand {
    margin-right: 0;
    padding: 0;
    flex-shrink: 0;
    text-decoration: none;
}

.navbar-brand--has-logo {
    display: inline-flex;
    align-items: center;
    align-self: center;
    flex-shrink: 0;
    height: var(--store-header-bar-height);
    line-height: 0;
    z-index: 1031;
    max-width: var(--store-logo-max-width);
}

.navbar-brand__mark {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    line-height: 0;
    width: 100%;
    max-width: 100%;
}

.navbar-brand__logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: var(--store-logo-height);
    max-height: var(--store-logo-height);
    min-height: 32px;
    min-width: var(--store-logo-min-width);
    object-fit: contain;
    object-position: left center;
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.2s ease;
}

.navbar-brand__logo:hover {
    transform: scale(1.02);
}

.brand-text {
    font-weight: 700;
    font-size: 1.375rem;
    color: var(--primary);
    letter-spacing: -0.025em;
    line-height: 1;
}

.brand-text span {
    color: var(--text-dark);
    font-weight: 600;
}

.navbar-toggler {
    padding: 6px;
    border-radius: var(--radius-sm);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.navbar-collapse {
    flex-grow: 1;
    min-width: 0;
}

@media (min-width: 992px) {
    .main-navbar > .container {
        gap: 32px;
    }

    .navbar-collapse {
        display: flex !important;
        flex: 1;
        align-items: center;
        justify-content: flex-end;
        gap: 16px;
        width: 100%;
        min-width: 0;
    }

    .navbar-collapse__body {
        display: flex;
        flex: 1;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        min-width: 0;
        gap: 16px;
    }

    .navbar-collapse__actions {
        display: flex;
        align-items: center;
        margin-left: auto;
        flex-shrink: 0;
    }

    .nav-search--mobile {
        display: none !important;
    }

    .nav-menu {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 32px;
        margin: 0 !important;
        padding: 0;
        z-index: 1;
    }

    .nav-menu .nav-item {
        width: auto;
    }

    .nav-menu .nav-link,
    .nav-menu__link {
        font-weight: 600;
        font-size: 0.875rem;
        color: var(--primary);
        padding: 8px 0 !important;
        letter-spacing: 0.03em;
        white-space: nowrap;
        border-radius: var(--radius-sm);
        transition:
            color 0.2s,
            opacity 0.2s;
    }

    .nav-menu .nav-link:hover,
    .nav-menu__link:hover {
        color: var(--primary-dark);
        opacity: 0.9;
        background: transparent;
    }

    .nav-right-zone {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;
        flex-shrink: 0;
    }

    .search-bar {
        width: 240px;
    }

    .nav-icons {
        gap: 4px;
    }

    .nav-icon-btn:hover {
        opacity: 1;
        background: var(--bg-light);
    }

    .cart-pill {
        padding: 8px 14px 8px 12px;
        margin-left: 0;
        border: 1px solid var(--border);
        background: var(--bg-light);
        transition:
            border-color 0.2s,
            background 0.2s,
            opacity 0.2s;
    }

    .cart-pill:hover {
        opacity: 1;
        background: var(--bg-white);
        border-color: #d4d4d4;
    }
}

.nav-menu .nav-link,
.nav-menu__link {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--primary);
    padding: 10px 0 !important;
    letter-spacing: 0.02em;
    transition:
        color 0.2s,
        opacity 0.2s;
}

.nav-menu .nav-link:hover,
.nav-menu__link:hover {
    color: var(--primary-dark);
}

.search-bar {
    position: relative;
    flex-shrink: 0;
}

.search-bar input {
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 9px 40px 9px 16px;
    font-size: 0.8125rem;
    font-family: inherit;
    width: 100%;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.4;
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        background 0.2s;
}

.search-bar input::placeholder {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: none;
    background: var(--bg-white);
}

.search-bar__submit {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition:
        color 0.2s,
        background 0.2s;
}

.search-bar__submit:hover,
.search-bar__submit:focus-visible {
    color: var(--primary-dark);
    background: rgba(0, 0, 0, 0.04);
    outline: none;
}

.search-bar .search-icon {
    font-size: 0.875rem;
    pointer-events: none;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 1.125rem;
    transition: opacity 0.2s;
}

.nav-icon-btn:hover {
    opacity: 0.65;
}

.nav-account .dropdown-toggle::after {
    display: none;
}

.nav-account__menu {
    min-width: 220px;
    padding: 8px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.nav-account__header {
    padding: 12px 16px 8px;
    pointer-events: none;
}

.nav-account__name {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-account__email {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    word-break: break-all;
}

.nav-account__menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    padding: 10px 16px;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.nav-account__menu .dropdown-item:not(.nav-account__logout):hover,
.nav-account__menu .dropdown-item:not(.nav-account__logout):focus,
.nav-account__menu .dropdown-item:not(.nav-account__logout):active,
.nav-account__menu .dropdown-item:not(.nav-account__logout):focus-visible {
    color: var(--primary);
    background: color-mix(in srgb, var(--primary) 10%, transparent);
}

.nav-account__menu .dropdown-item i {
    color: var(--text-muted);
    width: 1.125rem;
    transition: color 0.2s ease;
}

.nav-account__menu .dropdown-item:not(.nav-account__logout):hover i,
.nav-account__menu .dropdown-item:not(.nav-account__logout):focus i,
.nav-account__menu .dropdown-item:not(.nav-account__logout):active i,
.nav-account__menu .dropdown-item:not(.nav-account__logout):focus-visible i {
    color: var(--primary);
}

.nav-account__logout {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    color: #dc3545;
}

.nav-account__logout:hover {
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
}

.cart-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 50px;
    padding: 0 4px 0 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-left: 4px;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.cart-pill:hover {
    opacity: 0.65;
}

.cart-pill i {
    font-size: 1.125rem;
    color: var(--text-dark);
}

@media (max-width: 991.98px) {
    .main-navbar {
        position: sticky;
        top: 0;
    }

    :root {
        --store-header-bar-height: 60px;
        --store-top-strip-height: 34px;
        --store-nav-border-width: 1px;
        --store-total-header-height: calc(
            var(--store-top-strip-height) + var(--store-header-bar-height) +
                var(--store-nav-border-width)
        );
        --store-logo-height: 44px;
        --store-logo-max-width: min(200px, calc(100vw - 80px));
        --store-logo-min-width: 100px;
        --store-footer-logo-height: 36px;
        --store-footer-logo-max-width: min(140px, 100%);
        --store-footer-logo-min-width: 80px;
    }

    /* Tablet-specific adjustments */
    @media (min-width: 768px) {
        :root {
            --store-logo-max-width: min(240px, calc(100vw - 100px));
            --store-footer-logo-height: 40px;
            --store-footer-logo-max-width: min(160px, 100%);
        }
    }

    .main-navbar > .container {
        flex-wrap: nowrap;
        align-items: center;
        height: var(--store-header-bar-height);
        min-height: var(--store-header-bar-height);
        max-height: var(--store-header-bar-height);
    }

    .main-navbar .navbar-brand {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 52px);
    }

    .main-navbar .navbar-brand--has-logo {
        position: relative;
        max-width: var(--store-logo-max-width);
    }

    .main-navbar .navbar-brand__mark {
        max-width: 100%;
    }

    .main-navbar .navbar-brand__logo {
        pointer-events: auto;
        max-width: 100%;
        height: var(--store-logo-height);
        max-height: var(--store-logo-height);
        min-height: 28px;
    }

    .main-navbar .navbar-toggler {
        margin-left: auto;
        position: relative;
        z-index: 1032;
        flex-shrink: 0;
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-search--mobile.search-bar {
        width: 100%;
        margin: 0;
    }

    .nav-search--mobile input {
        width: 100%;
    }

    .cart-pill {
        margin-left: 4px;
        padding: 6px 12px 6px 8px;
        border: 1px solid var(--border);
        background: var(--bg-light);
        max-width: calc(100% - 120px);
    }

    .cart-pill__total {
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 575.98px) {
    .main-navbar > .container {
        gap: 12px;
    }

    .brand-text {
        font-size: 1.25rem;
    }

    .cart-pill {
        padding: 6px 10px 6px 6px;
        max-width: none;
    }

    .cart-pill__total {
        font-size: 0.75rem;
    }
}

/* Hero */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        var(--hero-bg-start) 0%,
        var(--hero-teal) 42%,
        var(--hero-bg-end) 100%
    );
    height: calc(100vh - var(--store-total-header-height));
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.store-home > .hero-section {
    margin-top: 0;
}

.hero-section__glow {
    position: absolute;
    top: -120px;
    right: -80px;
    width: min(520px, 70vw);
    height: min(520px, 70vw);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(45, 106, 79, 0.08) 0%,
        transparent 68%
    );
    pointer-events: none;
}

.hero-section__container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.25rem, 7vw, 6rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 4rem;
    }
}

.hero-content {
    position: relative;
    max-width: 40rem;
    width: 100%;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
}

.hero-title {
    font-size: clamp(2.25rem, 4.8vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin: 0 0 1rem;
    letter-spacing: -0.04em;
    max-width: 100%;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    color: var(--text-body);
    font-weight: 400;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    max-width: 28rem;
}

.hero-accent-line {
    width: 3rem;
    height: 3px;
    margin-top: 1.5rem;
    border-radius: 2px;
    background: linear-gradient(
        145deg,
        var(--primary) 0%,
        rgba(45, 106, 79, 0.3) 100%
    );
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 16px rgba(45, 106, 79, 0.25);
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.hero-button:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 106, 79, 0.32);
}

.hero-button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.hero-button__text {
    line-height: 1.2;
}

.hero-button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.875rem;
    transition: transform 0.25s ease;
}

.hero-button:hover .hero-button__icon {
    transform: translateX(2px);
}

.hero-button__icon i {
    line-height: 1;
}

.hero-visual {
    position: relative;
    isolation: isolate;
    padding: 0;
    width: 100%;
}

.hero-visual__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-visual__orb--one {
    width: 72%;
    aspect-ratio: 1;
    top: 8%;
    right: 4%;
    background: radial-gradient(
        circle at 30% 30%,
        #fff 0%,
        rgba(220, 238, 233, 0.5) 55%,
        transparent 72%
    );
}

.hero-visual__orb--two {
    width: 38%;
    aspect-ratio: 1;
    bottom: 6%;
    left: 0;
    background: radial-gradient(
        circle,
        rgba(45, 106, 79, 0.1) 0%,
        transparent 70%
    );
}

.hero-image-wrap {
    position: relative;
    z-index: 1;
    border-radius: clamp(1.25rem, 2.5vw, 1.75rem);
    overflow: hidden;
    background: var(--bg-white);
    box-shadow:
        0 24px 48px rgba(18, 18, 18, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.65) inset;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

@media (min-width: 992px) {
    .hero-image-wrap {
        transform: rotate(-1.25deg);
    }

    .hero-image-wrap:hover {
        transform: rotate(0deg) translateY(-4px);
        box-shadow:
            0 32px 56px rgba(18, 18, 18, 0.14),
            0 0 0 1px rgba(255, 255, 255, 0.75) inset;
    }
}

.hero-image-wrap img {
    width: 100%;
    height: clamp(260px, 42vw, 500px);
    object-fit: cover;
    display: block;
}

/* Sections */
.section-padding {
    padding: var(--section-py) 0;
}

.store-home > .section-padding:first-of-type,
.store-home > .category-section + .section-padding {
    padding-top: var(--section-py);
}

.section-bg {
    background: var(--bg-light);
}

.section-header {
    margin: 0 0 var(--section-header-gap);
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-heading-left::after {
    margin-left: auto;
    margin-right: auto;
}

.section-heading,
.section-heading-left {
    font-size: var(--section-title-size);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin: 0;
    color: var(--text-dark);
    display: block;
}

.section-heading::after,
.section-heading-left::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 0.75rem;
    background: var(--primary);
    border-radius: 2px;
}

.product-grid {
    --bs-gutter-x: var(--grid-gap);
    --bs-gutter-y: var(--grid-gap);
}

.category-row {
    --bs-gutter-x: 32px;
    --bs-gutter-y: 32px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* Category cards */
.category-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.category-card:hover {
    box-shadow: var(--shadow-hover);
}

.category-card .img-wrap {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover img {
    transform: scale(1.06);
}

.category-card .card-title {
    padding: 18px 20px 20px;
    font-size: 1.0625rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

/* Category showcase — editorial landing strip */
.category-section {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: clamp(2.5rem, 4vw, 3.5rem) 0 clamp(2.5rem, 4vw, 3.75rem);
    background: linear-gradient(
        180deg,
        rgba(244, 250, 248, 0.95) 0%,
        var(--bg-light) 55%,
        var(--bg-white) 100%
    );
    z-index: 2;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.category-section__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 18% 22%,
            rgba(220, 238, 233, 0.55) 0%,
            transparent 42%
        ),
        radial-gradient(
            circle at 82% 78%,
            rgba(45, 106, 79, 0.06) 0%,
            transparent 38%
        );
}

.category-section__container {
    position: relative;
    z-index: 1;
}

.category-section__header {
    text-align: center;
    margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
}

.category-section__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
}

.category-section__title {
    margin: 0;
    font-size: var(--section-title-size);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--text-dark);
}

.category-section__accent {
    width: 3rem;
    height: 3px;
    margin: 0.875rem auto 0;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--primary) 0%,
        rgba(45, 106, 79, 0.25) 100%
    );
}

.category-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9.75rem, 13.5rem));
    justify-content: center;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.category-tile {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: clamp(0.875rem, 1.75vw, 1.125rem);
    overflow: hidden;
    color: #fff;
    background: var(--text-dark);
    border: 2px solid transparent;
    box-shadow:
        0 12px 28px rgba(18, 18, 18, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    transition:
        transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.25s ease;
}

.category-tile::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

.category-tile::after {
    content: "\F138";
    font-family: "bootstrap-icons";
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #fff;
    pointer-events: none;
    transition: transform 0.25s ease;
}

.category-tile:hover,
.category-tile:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(45, 106, 79, 0.45);
    box-shadow:
        0 24px 48px rgba(18, 18, 18, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.category-tile:hover::after,
.category-tile:focus-visible::after {
    transform: translate(2px, -2px);
}

.category-tile:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.category-tile__media {
    position: absolute;
    inset: 0;
}

.category-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-tile:hover .category-tile__media img,
.category-tile:focus-visible .category-tile__media img {
    transform: scale(1.07);
}

.category-tile__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(18, 18, 18, 0.08) 0%,
        rgba(18, 18, 18, 0.22) 42%,
        rgba(18, 18, 18, 0.78) 100%
    );
    transition: opacity 0.35s ease;
}

.category-tile:hover .category-tile__scrim,
.category-tile:focus-visible .category-tile__scrim {
    opacity: 0.92;
}

.category-tile__content {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: clamp(0.625rem, 1.75vw, 0.875rem);
}

.category-tile__title {
    margin: 0;
    font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.category-tile__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.88);
    transition:
        gap 0.25s ease,
        color 0.25s ease;
}

.category-tile__cta i {
    font-size: 0.875rem;
    transition: transform 0.25s ease;
}

.category-tile:hover .category-tile__cta,
.category-tile:focus-visible .category-tile__cta {
    gap: 0.625rem;
    color: #fff;
}

.category-tile:hover .category-tile__cta i,
.category-tile:focus-visible .category-tile__cta i {
    transform: translateX(3px);
}

@media (max-width: 575.98px) {
    .category-section {
        margin-top: 0;
    }

    /* Display 2 categories per row on mobile for efficiency */
    .category-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(0.75rem, 2vw, 1rem);
    }
}

@media (min-width: 768px) {
    .category-showcase {
        grid-template-columns: repeat(auto-fit, minmax(10.25rem, 14rem));
    }
}

@media (min-width: 1200px) {
    .category-showcase {
        grid-template-columns: repeat(auto-fit, minmax(11rem, 14.5rem));
        gap: 1.125rem;
    }
}

/* Product cards — premium Shopify-style */
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition:
        box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.25s ease,
        transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(18, 18, 18, 0.1);
    transform: translateY(-4px);
}

.product-card--oos {
    opacity: 0.92;
}

.product-card--oos:hover {
    transform: none;
}

.product-card__media,
.product-card .img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
}

.product-card__media-link {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card__img--hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.product-card:hover .product-card__img--primary {
    transform: scale(1.05);
}

.product-card:hover .product-card__img--hover {
    opacity: 1;
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.2;
}

.product-card__badge--sale {
    background: var(--primary);
    color: #fff;
}

.product-card__badge--oos {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.product-card__actions {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.product-card__btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: var(--text-dark);
    font-size: 1rem;
    box-shadow: 0 2px 12px rgba(18, 18, 18, 0.12);
    cursor: pointer;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(4px);
    backdrop-filter: blur(6px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.product-card__wishlist {
    top: 12px;
    right: 12px;
}

.product-card:hover .product-card__btn,
.product-card:focus-within .product-card__btn,
.product-card__btn:focus-visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card__btn:hover:not(:disabled) {
    background: var(--text-dark);
    color: var(--bg-white);
}

.product-card__wishlist.is-active {
    color: var(--primary);
    opacity: 1;
    transform: translateY(0);
}

.product-card__wishlist.is-active:hover:not(:disabled) {
    background: var(--primary);
    color: var(--bg-white);
}

/* Quick add bar — fade in place (avoids hover flicker) */
.product-card__quick-add {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-top: 1px solid rgba(18, 18, 18, 0.06);
    background: rgba(255, 255, 255, 0.97);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        background 0.2s ease,
        color 0.2s ease;
    backdrop-filter: blur(8px);
}

.product-card:hover
    .product-card__quick-add:not(.product-card__quick-add--disabled),
.product-card:focus-within
    .product-card__quick-add:not(.product-card__quick-add--disabled) {
    opacity: 1;
    visibility: visible;
}

.product-card__quick-add:hover:not(.product-card__quick-add--disabled) {
    background: var(--text-dark);
    color: var(--bg-white);
}

.product-card__quick-add.is-added {
    background: var(--primary);
    color: #fff;
    opacity: 1;
    visibility: visible;
}

.product-card__quick-add--disabled {
    opacity: 1;
    visibility: visible;
    background: rgba(247, 247, 247, 0.97);
    color: var(--text-muted);
    cursor: not-allowed;
    font-size: 0.75rem;
}

@media (hover: none) {
    .product-card__btn {
        opacity: 1;
        transform: translateY(0);
    }

    .product-card__quick-add:not(.product-card__quick-add--disabled) {
        opacity: 1;
        visibility: visible;
        padding: 12px;
        font-size: 0.75rem;
    }
}

.product-card__body,
.product-card .card-body {
    padding: 16px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.product-card__vendor {
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--text-muted);
    margin: 0 0 2px;
    line-height: 1.2;
}

.product-rating {
    color: #e8a317;
    font-size: 0.625rem;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    line-height: 1;
}

.product-rating i {
    margin-right: 1px;
}

.product-rating .count {
    color: var(--text-muted);
    font-size: 0.6875rem;
    margin-left: 4px;
    letter-spacing: 0;
}

.product-name {
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 0 0 8px;
    line-height: 1.4;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.product-card__title-link {
    color: inherit;
    transition: color 0.2s ease;
}

.product-card__title-link:hover {
    color: var(--primary);
}

.product-price {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.product-price__current {
    color: var(--text-dark);
}

.product-price--sale .product-price__current {
    color: var(--text-dark);
}

.product-price__compare {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.8125rem;
    text-decoration: line-through;
}

/* Reels */
.reels-section .section-header {
    margin-bottom: 36px;
}

.reels-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 0 20px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.reels-scroll::-webkit-scrollbar {
    display: none;
}

.reel-card {
    flex: 0 0 152px;
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 9 / 16;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.reel-card:hover {
    transform: scale(1.02);
}

.reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-card .play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 18, 18, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
}

.reel-card:hover .play-overlay {
    background: rgba(18, 18, 18, 0.28);
}

.reel-card .play-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--text-dark);
    padding-left: 3px;
    box-shadow: 0 2px 12px rgba(18, 18, 18, 0.15);
}

/* Testimonials (landing) */
.testimonials-section .section-header {
    margin-bottom: var(--section-header-gap);
}

.testimonial-card {
    height: 100%;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
}

.testimonial-card__stars {
    color: #e8a317;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.testimonial-card__quote {
    margin: 0 0 20px;
}

.testimonial-card__quote p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-dark);
}

.testimonial-card__footer {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.testimonial-card__name {
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-card__product a {
    color: var(--primary);
    text-decoration: none;
}

.testimonial-card__product a:hover {
    text-decoration: underline;
}

.testimonials-section__about {
    margin-top: 32px;
    font-size: 0.875rem;
}

.testimonials-section__about a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.testimonials-section__about a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: var(--bg-light);
    padding: 0;
    border-top: 1px solid var(--border);
}

.site-footer--align-left,
.site-footer--align-left .footer-col,
.site-footer--align-left .footer-brand,
.site-footer--align-left .footer-brand p,
.site-footer--align-left .footer-bottom {
    text-align: left;
}

.site-footer--align-left .footer-bottom {
    justify-content: space-between;
    align-items: center;
}

.footer-newsletter {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );
    color: #fff;
    padding: 40px 0;
}

.footer-newsletter__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-newsletter__copy {
    flex: 1 1 280px;
    max-width: 480px;
}

.footer-newsletter__copy h5 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    color: #fff;
}

.footer-newsletter__copy p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.92;
    line-height: 1.6;
}

.footer-newsletter__form {
    display: flex;
    flex: 1 1 320px;
    max-width: 480px;
    gap: 10px;
}

.footer-newsletter__input {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    background: #fff;
    color: var(--text-dark);
}

.footer-newsletter__input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.footer-newsletter__input.is-invalid {
    box-shadow: 0 0 0 3px rgba(255, 200, 200, 0.6);
}

.footer-newsletter__btn {
    flex-shrink: 0;
    padding: 14px 24px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--text-dark);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
    white-space: nowrap;
}

.footer-newsletter__btn:hover {
    background: #000;
}

.footer-newsletter__btn:active {
    transform: scale(0.98);
}

.footer-newsletter__success,
.footer-newsletter__error {
    margin: 12px 0 0;
    font-size: 0.8125rem;
    text-align: center;
}

.footer-newsletter__success {
    opacity: 0.95;
}

.footer-newsletter__error {
    color: #fecaca;
}

.site-footer > .container {
    padding-top: 64px;
}

.site-footer .row {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 36px;
}

.footer-brand .brand-text {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-brand__logo-slot {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    line-height: 0;
}

.footer-brand__mark {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.footer-brand__logo {
    display: block;
    width: auto;
    height: var(--store-footer-logo-height);
    max-height: var(--store-footer-logo-height);
    max-width: var(--store-footer-logo-max-width);
    min-width: var(--store-footer-logo-min-width);
    object-fit: contain;
    object-position: left center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
    margin: 0;
}

.footer-col h6 {
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0 0 16px;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--text-dark);
}

.footer-bottom {
    margin-top: 56px;
    padding: 20px 0 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 0.875rem;
    transition: all 0.2s;
}

.social-icons a:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: #fff;
}

.copyright {
    font-size: 0.8125rem;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

/* Mobile bottom navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1025;
    height: 60px;
    padding-bottom: env(safe-area-inset-bottom, 0);
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 12px rgba(18, 18, 18, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.mobile-bottom-nav__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    height: 60px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.mobile-bottom-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 4px;
    color: var(--text-muted);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    position: relative;
    min-width: 0;
}

.mobile-bottom-nav__item i {
    font-size: 1.25rem;
    line-height: 1;
}

.mobile-bottom-nav__item:hover,
.mobile-bottom-nav__item:focus-visible {
    color: var(--text-dark);
    outline: none;
}

.mobile-bottom-nav__item.active {
    color: var(--primary);
}

.mobile-bottom-nav__badge {
    position: absolute;
    top: 4px;
    left: calc(50% + 6px);
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 0.5625rem;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
}

.mobile-bottom-nav__badge:empty,
.mobile-bottom-nav__badge[data-count="0"] {
    display: none;
}

/* Mobile nav drawer — offcanvas menu (reliable on touch devices) */
.mobile-nav-drawer {
    --mobile-nav-drawer-width: min(320px, 88vw);
    width: var(--mobile-nav-drawer-width);
    max-width: 100vw;
    border: none;
    box-shadow: 8px 0 32px rgba(18, 18, 18, 0.12);
}

.mobile-nav-drawer__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-white);
    font-family: var(--font-body);
}

.mobile-nav-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.mobile-nav-drawer__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.mobile-nav-drawer__close {
    border: 0;
    background: var(--bg-light);
    color: var(--text-dark);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-drawer__body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 20px calc(20px + env(safe-area-inset-bottom, 0px));
}

.mobile-nav-drawer .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0 0 16px !important;
    padding: 0 0 12px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-drawer .nav-menu .nav-item {
    width: 100%;
}

.mobile-nav-drawer .nav-menu .nav-link,
.mobile-nav-drawer .nav-menu__link {
    display: block;
    padding: 14px 0 !important;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    touch-action: manipulation;
}

.mobile-nav-drawer .nav-search--mobile {
    margin-bottom: 16px;
}

.mobile-nav-drawer__actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-drawer__action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: var(--text-dark);
    font-size: 0.9375rem;
    font-weight: 500;
    border: 0;
    background: transparent;
    text-align: left;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-drawer__action i {
    font-size: 1.125rem;
    color: var(--text-muted);
    width: 1.25rem;
    text-align: center;
}

.mobile-nav-drawer__action--cart {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.mobile-nav-drawer__cart-total {
    margin-left: auto;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Cart drawer â€” premium offcanvas */
.cart-drawer.offcanvas {
    --cart-drawer-width: 400px;
    width: var(--cart-drawer-width);
    max-width: 100vw;
    border: none;
    box-shadow: -8px 0 40px rgba(18, 18, 18, 0.12);
    transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}

.offcanvas-backdrop.cart-drawer-backdrop {
    transition: opacity 0.35s ease;
}

.cart-drawer__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-white);
}

.cart-drawer__header {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--border);
}

.cart-drawer__header-text {
    min-width: 0;
}

.cart-drawer__title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin: 0 0 4px;
    line-height: 1.3;
}

.cart-drawer__count {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 400;
    margin: 0;
}

.cart-drawer__close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: -4px -8px 0 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--text-dark);
    font-size: 1.125rem;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.cart-drawer__close:hover {
    background: var(--bg-light);
}

.cart-drawer__close:active {
    transform: scale(0.94);
}

.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.cart-drawer__body::-webkit-scrollbar {
    width: 5px;
}

.cart-drawer__body::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 999px;
}

.cart-drawer__items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cart-drawer__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    animation: cartItemIn 0.4s cubic-bezier(0.32, 0.72, 0, 1) both;
}

.cart-drawer__item:nth-child(2) {
    animation-delay: 0.05s;
}
.cart-drawer__item:nth-child(3) {
    animation-delay: 0.1s;
}

@keyframes cartItemIn {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-drawer__item.is-removing {
    animation: cartItemOut 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes cartItemOut {
    to {
        opacity: 0;
        transform: translateX(16px);
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin: 0;
        border-width: 0;
        overflow: hidden;
    }
}

.cart-drawer__thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #f3f3f3;
    flex-shrink: 0;
}

.cart-drawer__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-drawer__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.cart-drawer__row-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.cart-drawer__name {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--text-dark);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-drawer__remove {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: -4px -4px 0 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.9375rem;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.cart-drawer__remove:hover {
    color: var(--primary);
    background: rgba(45, 106, 79, 0.08);
}

.cart-drawer__price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.01em;
}

.cart-drawer__row-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cart-drawer__qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
    background: var(--bg-white);
}

.cart-drawer__qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.cart-drawer__qty-btn:hover:not(:disabled) {
    background: var(--bg-light);
}

.cart-drawer__qty-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.cart-drawer__qty-value {
    min-width: 28px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    user-select: none;
}

.cart-drawer__line-total {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.cart-drawer__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 56px 32px 48px;
    min-height: 280px;
}

.cart-drawer__empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cart-drawer__empty-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.cart-drawer__empty-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0 0 24px;
    line-height: 1.55;
    max-width: 240px;
}

.cart-drawer__empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid var(--border);
    border-radius: 999px;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.cart-drawer__empty-btn:hover {
    border-color: var(--text-dark);
    background: var(--bg-light);
}

.cart-drawer__footer {
    flex-shrink: 0;
    padding: 20px 24px calc(24px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--border);
    background: var(--bg-white);
    box-shadow: 0 -4px 24px rgba(18, 18, 18, 0.04);
}

.cart-drawer__summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.cart-drawer__summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--text-body);
}

.cart-drawer__summary-row--total {
    padding-top: 12px;
    margin-top: 4px;
    border-top: 1px dashed var(--border);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.cart-drawer__summary-row--total span:last-child {
    font-size: 1.125rem;
}

.cart-drawer__checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(45, 106, 79, 0.28);
}

.cart-drawer__checkout:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.35);
}

.cart-drawer__checkout:active {
    transform: scale(0.98);
}

.cart-drawer__checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.cart-drawer.is-empty .cart-drawer__footer {
    display: none;
}

.cart-drawer.is-empty .cart-drawer__items {
    display: none;
}

.cart-drawer:not(.is-empty) .cart-drawer__empty {
    display: none;
}

/* Side drawer — cart / wishlist mode panels */
.cart-drawer__panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.cart-drawer__panel[hidden] {
    display: none !important;
}

.cart-drawer__empty-icon--wishlist {
    color: var(--primary);
}

.cart-drawer__item--wishlist .cart-drawer__row-bottom {
    justify-content: flex-start;
    margin-top: 2px;
}

.cart-drawer .cart-drawer__move-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.cart-drawer .cart-drawer__move-cart:hover {
    border-color: var(--text-dark);
    background: var(--bg-light);
    color: var(--text-dark);
}

.cart-drawer .cart-drawer__move-cart i {
    font-size: 0.875rem;
}

.cart-drawer__panel.is-empty .cart-drawer__footer {
    display: none;
}

.cart-drawer__panel.is-empty .cart-drawer__items {
    display: none;
}

.cart-drawer__panel:not(.is-empty) .cart-drawer__empty {
    display: none;
}

/* Wishlist nav badge */
.nav-icon-btn {
    position: relative;
}

.nav-icon-btn__badge,
.mobile-bottom-nav__wishlist-badge,
.mobile-bottom-nav__badge[data-count] {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    pointer-events: none;
}

.nav-icon-btn__badge.is-hidden,
.mobile-bottom-nav__wishlist-badge.is-hidden,
.mobile-bottom-nav__badge.is-hidden {
    display: none;
}

/* Global storefront toast (cart / wishlist feedback) */
.store-toast {
    position: fixed;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    z-index: 1080;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: min(92vw, 360px);
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--text-dark);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.store-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.store-toast i {
    color: #4ade80;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.store-toast[data-toast-type="error"] i {
    color: #f87171;
}

@media (min-width: 768px) {
    .store-toast {
        bottom: 24px;
    }
}

.nav-icon-btn__badge {
    top: 4px;
    right: 4px;
}

.mobile-bottom-nav__wishlist-badge {
    top: 0;
    right: calc(50% - 22px);
}

.nav-icon-btn__badge:empty,
.nav-icon-btn__badge[data-count="0"],
.mobile-bottom-nav__wishlist-badge:empty,
.mobile-bottom-nav__wishlist-badge[data-count="0"] {
    display: none;
}

@media (max-width: 767.98px) {
    .cart-drawer.offcanvas {
        --cart-drawer-width: 100%;
        width: 100%;
    }

    .cart-drawer__header {
        padding: 20px 20px 16px;
    }

    .cart-drawer__item {
        padding: 18px 20px;
        grid-template-columns: 72px 1fr;
        gap: 14px;
    }

    .cart-drawer__thumb {
        width: 72px;
        height: 72px;
    }

    .cart-drawer__footer {
        padding: 16px 20px calc(20px + env(safe-area-inset-bottom, 0px));
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    :root {
        --store-footer-logo-height: 88px;
        --store-footer-logo-max-width: min(280px, 100%);
        --store-footer-logo-min-width: 100px;
        --section-header-gap: 2rem;
    }

    .footer-brand__logo {
        max-width: var(--store-footer-logo-max-width);
        min-height: 60px;
    }

    .hero-section__container {
        padding: clamp(2rem, 5vh, 3rem) 0;
    }

    .hero-grid {
        gap: 2.5rem;
    }

    .hero-content {
        max-width: 36rem;
        width: 100%;
    }

    .hero-visual {
        padding-bottom: 0.5rem;
        max-width: 34rem;
        margin: 0 auto;
    }

    .hero-image-wrap {
        transform: none;
    }

    .hero-visual__orb--two {
        left: 5%;
        width: 30%;
    }

    .hero-image-wrap img {
        height: 340px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-py: 48px;
        --grid-gap: 16px;
        --store-header-bar-height: 56px;
        --store-top-strip-height: 34px;
        --store-nav-border-width: 1px;
        --store-total-header-height: calc(
            var(--store-top-strip-height) + var(--store-header-bar-height) +
                var(--store-nav-border-width)
        );
        --store-logo-height: 40px;
        --store-logo-max-width: min(160px, calc(100vw - 100px));
        --store-logo-min-width: 80px;
        --store-footer-logo-height: 32px;
        --store-footer-logo-max-width: min(130px, 100%);
        --store-footer-logo-min-width: 70px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-strip {
        font-size: 0.6875rem;
        padding: 8px 16px;
        letter-spacing: 0.04em;
    }

    .hero-section__container {
        padding: clamp(1.5rem, 4vh, 2.5rem) 0;
    }

    .hero-grid {
        gap: 2rem;
    }

    .hero-image-wrap {
        transform: none;
    }

    .hero-visual {
        padding: 0;
    }

    .hero-visual__orb--two {
        left: 5%;
        width: 25%;
        bottom: 8%;
    }

    .hero-image-wrap img {
        height: 260px;
    }

    .hero-title {
        margin-bottom: 0.625rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .hero-accent-line {
        margin-top: 1.25rem;
    }

    .hero-button {
        margin-top: 1.5rem;
        padding: 0.75rem 1.5rem;
    }

    .category-row {
        --bs-gutter-x: 16px;
    }

    .reel-card {
        flex: 0 0 132px;
    }

    .footer-newsletter {
        padding: 32px 0;
    }

    .footer-newsletter__form {
        flex-direction: column;
        max-width: none;
        width: 100%;
    }

    .footer-newsletter__btn {
        width: 100%;
    }

    .site-footer > .container {
        padding-top: 48px;
    }

    .footer-bottom {
        margin-top: 40px;
    }

    body {
        padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    }

    .mobile-bottom-nav {
        display: block;
    }
}
