@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800;900&display=swap');

:root {
    color-scheme: light;
    scrollbar-gutter: stable;
}

html {
    min-height: 100%;
    background:
        radial-gradient(circle at top left, rgba(0, 0, 0, 0.04), transparent 32%),
        radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.08), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f3f3f1 34%, #e2e2e0 68%, #d4d4d4 100%);
    background-attachment: fixed;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(0, 0, 0, 0.04), transparent 32%),
        radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.08), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f3f3f1 34%, #e2e2e0 68%, #d4d4d4 100%);
    background-attachment: fixed;
    color: #171717;
}

.site-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: transparent;
}

footer {
    margin-top: auto;
    flex-shrink: 0;
}

.site-shell > main {
    margin-bottom: clamp(3rem, 7vw, 6rem);
}

.top-nav {
    height: 5rem;
    border-bottom: 1px solid #d0c6b8;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
}

.nav-icon {
    display: inline-flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: color 180ms ease, transform 180ms ease;
}

.nav-icon:hover {
    color: #525252;
    transform: translateY(-1px);
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #000;
}

.brand-mark {
    height: 2.15rem;
    width: 2.15rem;
}

.brand-word {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.cart-badge {
    position: absolute;
    right: 0.1rem;
    top: 0.05rem;
    display: flex;
    height: 1.35rem;
    min-width: 1.35rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
}

.mobile-drawer {
    z-index: 90 !important;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(2px);
}

.mobile-drawer-panel {
    display: flex;
    flex-direction: column;
    width: min(86vw, 22rem);
    height: 100%;
    overflow: hidden;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    background: #fafafa;
    color: #0a0a0a;
    box-shadow: 18px 0 48px rgba(0, 0, 0, 0.18);
    transform: translateX(-100%);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-drawer.is-open .mobile-drawer-panel {
    transform: translateX(0);
}

.mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    cursor: default;
}

.drawer-panel-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 4.5rem;
    padding: 0.85rem 1.1rem 0.85rem 1.25rem;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
}

.drawer-account-link {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
}

.drawer-account-kicker {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #737373;
}

.drawer-account-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.drawer-login-icon {
    display: inline-flex;
    height: 2.35rem;
    width: 2.35rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #111;
    color: #fff;
}

.drawer-panel-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 1.75rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1.15rem 0 1.75rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.28) transparent;
}

.drawer-panel-body::-webkit-scrollbar {
    width: 4px;
}

.drawer-panel-body::-webkit-scrollbar-track {
    background: transparent;
}

.drawer-panel-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.22);
    border-radius: 999px;
}

.drawer-panel-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 0 0.85rem;
}

.drawer-section-label {
    margin: 0 0.55rem 0.55rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a8a8a;
}

.drawer-link,
.drawer-summary {
    display: flex;
    min-height: 3.15rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0 0.15rem;
    padding: 0.7rem 0.7rem;
    border-radius: 0.65rem;
    color: #111;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
    transition: background 160ms ease, color 160ms ease;
}

.drawer-link:hover,
.drawer-summary:hover {
    background: #efefef;
}

.drawer-link-accent {
    margin-top: 0.35rem;
    background: #111;
    color: #fff;
}

.drawer-link-accent:hover {
    background: #000;
    color: #fff;
}

.drawer-details {
    margin: 0.15rem;
    border-radius: 0.65rem;
}

.drawer-summary {
    list-style: none;
    cursor: pointer;
    width: 100%;
}

.drawer-summary::-webkit-details-marker {
    display: none;
}

.drawer-chevron {
    height: 1.1rem;
    width: 1.1rem;
    flex-shrink: 0;
    opacity: 0.55;
    transition: transform 180ms ease;
}

.drawer-details[open] > .drawer-summary .drawer-chevron {
    transform: rotate(180deg);
}

.drawer-subnav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0 0.35rem 0.55rem 0.85rem;
}

.drawer-sub-link {
    display: block;
    padding: 0.65rem 0.7rem;
    border-radius: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #525252;
    transition: background 160ms ease, color 160ms ease;
}

.drawer-sub-link:hover {
    background: #efefef;
    color: #111;
}

.drawer-social-block {
    margin-top: auto;
    padding: 1.1rem 1.25rem 0;
    border-top: 1px solid #e8e8e8;
}

.drawer-social-block .drawer-section-label {
    opacity: 0;
    transform: translateY(8px);
}

.drawer-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.drawer-social {
    display: inline-flex;
    height: 2.45rem;
    width: 2.45rem;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4d4d4;
    border-radius: 999px;
    background: #fff;
    color: #171717;
    opacity: 0;
    transform: scale(0.35);
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.mobile-drawer.is-open .drawer-social-block .drawer-section-label {
    animation: drawer-soft-in 380ms cubic-bezier(0.22, 1, 0.36, 1) 160ms both;
}

.mobile-drawer.is-open .drawer-social {
    animation: drawer-social-pop 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mobile-drawer.is-open .drawer-social:nth-child(1) { animation-delay: 220ms; }
.mobile-drawer.is-open .drawer-social:nth-child(2) { animation-delay: 300ms; }
.mobile-drawer.is-open .drawer-social:nth-child(3) { animation-delay: 380ms; }
.mobile-drawer.is-open .drawer-social:nth-child(4) { animation-delay: 460ms; }
.mobile-drawer.is-open .drawer-social:nth-child(5) { animation-delay: 540ms; }
.mobile-drawer.is-open .drawer-social:nth-child(6) { animation-delay: 620ms; }

.mobile-drawer.is-open .drawer-social:hover {
    border-color: #111;
    background: #111;
    color: #fff;
    transform: translateY(-2px) scale(1.06);
}

.drawer-nav > .drawer-link,
.drawer-nav > .drawer-details {
    opacity: 0;
    transform: translateX(-14px);
}

.mobile-drawer.is-open .drawer-nav > .drawer-link,
.mobile-drawer.is-open .drawer-nav > .drawer-details {
    animation: drawer-link-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mobile-drawer.is-open .drawer-nav > :nth-child(1) { animation-delay: 70ms; }
.mobile-drawer.is-open .drawer-nav > :nth-child(2) { animation-delay: 110ms; }
.mobile-drawer.is-open .drawer-nav > :nth-child(3) { animation-delay: 150ms; }
.mobile-drawer.is-open .drawer-nav > :nth-child(4) { animation-delay: 190ms; }
.mobile-drawer.is-open .drawer-nav > :nth-child(5) { animation-delay: 230ms; }
.mobile-drawer.is-open .drawer-nav > :nth-child(6) { animation-delay: 270ms; }
.mobile-drawer.is-open .drawer-nav > :nth-child(7) { animation-delay: 310ms; }
.mobile-drawer.is-open .drawer-nav > :nth-child(8) { animation-delay: 350ms; }

@keyframes drawer-social-pop {
    0% {
        opacity: 0;
        transform: scale(0.35);
    }
    65% {
        opacity: 1;
        transform: scale(1.14);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes drawer-soft-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drawer-link-in {
    from {
        opacity: 0;
        transform: translateX(-14px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-slide {
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 700ms ease, transform 1200ms ease;
}

.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: #e7d9c8;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-dot {
    width: 34px;
    height: 3px;
    background: rgba(255, 255, 255, 0.38);
    transition: background 220ms ease, width 220ms ease;
}

.hero-dot.is-active {
    width: 54px;
    background: #fff;
}

.product-card {
    transition: transform 220ms ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.wishlist-float-btn,
.wishlist-remove-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wishlist-float-btn:hover,
.wishlist-remove-btn:hover {
    transform: scale(1.06);
    border-color: #000;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.wishlist-float-btn .wishlist-heart-fill,
.wishlist-pdp-btn .wishlist-heart-fill {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 160ms ease, transform 180ms ease;
}

.wishlist-float-btn .wishlist-heart-outline,
.wishlist-pdp-btn .wishlist-heart-outline {
    transition: opacity 160ms ease;
}

.wishlist-float-btn.is-active,
.wishlist-pdp-btn.is-active {
    color: #e11d48;
    border-color: rgba(225, 29, 72, 0.35);
    background: #fff;
}

.wishlist-float-btn.is-active .wishlist-heart-fill,
.wishlist-pdp-btn.is-active .wishlist-heart-fill {
    opacity: 1;
    transform: scale(1);
}

.wishlist-float-btn.is-active .wishlist-heart-outline,
.wishlist-pdp-btn.is-active .wishlist-heart-outline {
    opacity: 0;
}

.wishlist-float-btn.is-loading,
.wishlist-remove-btn.is-loading,
.wishlist-pdp-btn.is-loading {
    opacity: 0.65;
    pointer-events: none;
}

.wishlist-remove-btn {
    color: #111;
}

.wishlist-remove-btn:hover {
    background: #000;
    color: #fff;
}

.wishlist-pdp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border: 1px solid #d4d4d4;
    background: #fff;
    color: #111;
    cursor: pointer;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.wishlist-pdp-btn:hover {
    border-color: #000;
}

.wishlist-pdp-btn.is-active {
    border-color: #e11d48;
}

.drop-tabs-section {
    border-bottom: 1px solid #e5e5e5;
}

.full-width-banner {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #d9d0c3;
}

.full-width-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.drop-tab {
    min-height: 3.1rem;
    border: 1px solid #737373;
    border-radius: 999px;
    background: #fff;
    color: #000;
    padding: 0 1.45rem;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.drop-tab:hover,
.drop-tab.is-active {
    border-color: #000;
    background: #000;
    color: #fff;
    transform: translateY(-1px);
}

.drop-product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(1.25rem, 2vw, 2.25rem);
}

.drop-product-card {
    min-width: 0;
}

.drop-product-image {
    aspect-ratio: 3 / 4;
    border-radius: 0.45rem;
}

.product-image-frame {
    aspect-ratio: 3 / 4;
}

.drop-product-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.25;
    transition: color 180ms ease;
}

.drop-product-title:hover {
    color: #525252;
}

.drop-price {
    margin-top: 0.35rem;
    color: #6b7280;
    font-size: 0.86rem;
    line-height: 1.2;
}

.drop-price span {
    color: #6b7280;
    font-weight: 600;
    text-decoration: line-through;
}

.drop-view-all {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1;
    background: #fff;
    padding: 0 1.6rem;
    color: #334155;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.drop-view-all:hover {
    border-color: #000;
    color: #000;
    transform: translateY(-1px);
}

.category-showcase + .product-ad,
.product-ad + .category-showcase {
    margin-top: 5rem;
}

.category-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(17rem, 26vw);
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    scroll-padding-inline: 0.25rem;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.featured-slider-left .featured-product-slider {
    grid-auto-columns: minmax(15rem, 22vw);
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.slider-product {
    min-width: 0;
    scroll-snap-align: start;
}

.image-frame {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.section-kicker {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #737373;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0 1.25rem;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn-primary:hover {
    background: #262626;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
}

.field {
    width: 100%;
    border: 1px solid #d4d4d4;
    background: #fff;
    padding: 1rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 700;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field:focus {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.summary-panel {
    border: 1px solid rgba(16, 24, 40, 0.16);
    background: rgba(255, 252, 246, 0.94);
    box-shadow: 0 26px 90px rgba(27, 36, 56, 0.12);
}

.auth-shell {
    background:
        linear-gradient(135deg, rgba(11, 25, 48, 0.08), transparent 32%),
        radial-gradient(circle at 90% 10%, rgba(190, 24, 93, 0.16), transparent 28%),
        radial-gradient(circle at 12% 86%, rgba(20, 184, 166, 0.14), transparent 30%),
        #fbf8f1;
}

.auth-visual-panel {
    background: #fff8ee;
}

.login-poster {
    position: relative;
    height: 100%;
    min-height: 42rem;
    overflow: hidden;
    background: #101828;
}

.login-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.login-poster img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.auth-panel {
    border: 1px solid rgba(16, 24, 40, 0.16);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 28px 90px rgba(27, 36, 56, 0.14);
    backdrop-filter: blur(16px);
}

.auth-tab {
    border-bottom: 2px solid transparent;
    color: #737373;
    transition: border-color 180ms ease, color 180ms ease;
}

.auth-tab.is-active {
    border-color: #be185d;
    color: #111827;
}

.profile-shell {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 240, 230, 0.78) 48%, rgba(226, 226, 224, 0.9)),
        linear-gradient(135deg, rgba(208, 198, 184, 0.32), transparent 34%),
        #f5f3ef;
}

.profile-hero {
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 243, 235, 0.9)),
        #fff;
    box-shadow: 0 16px 50px rgba(27, 36, 56, 0.08);
}

.profile-sidebar {
    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 54px rgba(27, 36, 56, 0.1);
}

.profile-user-card {
    border: 1px solid #d0c6b8;
    border-radius: 8px;
    background: #f8f3eb;
}

.profile-avatar {
    display: inline-flex;
    height: 3.25rem;
    width: 3.25rem;
    align-items: center;
    justify-content: center;
    border: 1px solid #c8bba9;
    border-radius: 50%;
    background: #fff;
    color: #111827;
}

.profile-nav-list {
    display: grid;
    gap: 0.55rem;
}

.profile-sidebar-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.95rem 1rem;
    color: #475467;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.profile-sidebar-btn:hover,
.profile-sidebar-btn.is-active {
    border-color: #111827;
    background: #111827;
    color: #fff;
}

.profile-card {
    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 38px rgba(27, 36, 56, 0.08);
}

.profile-stat {
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 28px rgba(27, 36, 56, 0.06);
}

.profile-stat:nth-child(3n + 1) {
    border-top: 4px solid #111827;
}

.profile-stat:nth-child(3n + 2) {
    border-top: 4px solid #7b8794;
}

.profile-stat:nth-child(3n) {
    border-top: 4px solid #c8bba9;
}

.profile-section {
    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 242, 0.92));
    box-shadow: 0 20px 64px rgba(27, 36, 56, 0.1);
}

.profile-section.is-hidden {
    display: none;
}

.profile-callout,
.profile-quick-actions {
    border: 1px solid #d7d0c5;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
}

.profile-callout {
    border-style: dashed;
}

.profile-quick-actions {
    background: #faf7f2;
}

.profile-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c8bba9;
    border-radius: 8px;
    background: #fff;
    padding: 0.55rem 0.9rem;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #111827;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.profile-chip:hover {
    border-color: #111827;
    background: #111827;
    color: #fff;
    transform: translateY(-1px);
}

.policy-panel {
    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 242, 0.92));
    box-shadow: 0 20px 64px rgba(27, 36, 56, 0.1);
}

.content-page {
    width: 100%;
}

.inner-page-banner {
    position: relative;
    width: 100%;
    margin-top: 0;
    padding-top: 4.5rem;
}

@media (min-width: 640px) {
    .inner-page-banner {
        padding-top: 5rem;
    }
}

.inner-page-banner-media {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 8.5rem;
    overflow: hidden;
    background: #1a1a1a;
}

@media (min-width: 640px) {
    .inner-page-banner-media {
        min-height: 9.5rem;
    }
}

@media (min-width: 1024px) {
    .inner-page-banner-media {
        min-height: 10.5rem;
    }
}

.inner-page-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.inner-page-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.inner-page-banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 1.35rem 1rem 1.45rem;
}

@media (min-width: 640px) {
    .inner-page-banner-content {
        padding: 1.5rem 1.5rem 1.65rem;
    }
}

@media (min-width: 1024px) {
    .inner-page-banner-content {
        padding: 1.65rem 4rem 1.85rem;
    }
}

.inner-page-banner-title {
    margin: 0;
    max-width: 48rem;
    color: #fff;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.content-body {
    width: 100%;
}

.content-block + .content-block {
    margin-top: 2.75rem;
    padding-top: 2.75rem;
    border-top: 1px solid #e5e5e5;
}

.content-block h2 {
    margin-bottom: 1rem;
    color: #111827;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.content-block p,
.content-block li {
    color: #525252;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.85;
}

.content-block p + p {
    margin-top: 1rem;
}

.content-block ul {
    margin-top: 1rem;
    display: grid;
    gap: 0.65rem;
    padding-left: 1.2rem;
    list-style: disc;
}

.content-meta-label {
    margin-bottom: 0.35rem;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #737373;
}

.content-meta-value {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
}

.content-link-list {
    margin-top: 1rem;
    display: grid;
    gap: 0.75rem;
    padding-left: 0;
    list-style: none;
}

.content-link-list a {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    transition: opacity 160ms ease;
}

.content-link-list a:hover {
    opacity: 0.65;
}

.policy-section {
    border-top: 1px solid #d7d0c5;
    padding-top: 1.75rem;
}

.policy-section:first-child {
    border-top: 0;
    padding-top: 0;
}

.policy-section h2 {
    color: #111827;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.policy-section p,
.policy-section li {
    color: #525252;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.8;
}

.policy-section ul {
    margin-top: 1rem;
    display: grid;
    gap: 0.75rem;
}

.page-rich-content {
    color: #525252;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.85;
}

.page-rich-content h2,
.page-rich-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.page-rich-content h2:first-child,
.page-rich-content h3:first-child {
    margin-top: 0;
}

.page-rich-content h2 {
    font-size: 0.95rem;
}

.page-rich-content h3 {
    font-size: 0.88rem;
}

.page-rich-content p + p {
    margin-top: 1rem;
}

.page-rich-content ul,
.page-rich-content ol {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.25rem;
    display: grid;
    gap: 0.55rem;
}

.page-rich-content ul {
    list-style: disc;
}

.page-rich-content ol {
    list-style: decimal;
}

.page-rich-content a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-rich-content blockquote {
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid #111;
    color: #404040;
}

.commerce-modal,
.cart-drawer {
    background: rgba(0, 0, 0, 0.42);
}

.commerce-backdrop {
    position: absolute;
    inset: 0;
    cursor: default;
}

.commerce-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(92vw, 30rem);
    max-height: min(88vh, 42rem);
    overflow-y: auto;
    border: 1px solid #d4d4d4;
    background: #fff;
    color: #000;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translate(-50%, -46%) scale(0.98);
    transition: opacity 220ms ease, transform 220ms ease;
}

.commerce-modal.is-open .commerce-dialog {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cart-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 10;
    display: flex;
    width: min(100vw, 26.5rem);
    height: 100%;
    flex-direction: column;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f7f5 100%);
    color: #000;
    box-shadow: -24px 0 80px rgba(0, 0, 0, 0.22);
    transform: translateX(100%);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

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

.cart-drawer-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1.25rem;
    border-bottom: 1px solid #e8e8e6;
}

.cart-drawer-kicker {
    margin-bottom: 0.35rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #737373;
}

.cart-drawer-title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 1;
}

.cart-drawer-count {
    display: inline-flex;
    min-width: 1.55rem;
    height: 1.55rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
}

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.cart-drawer-item {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #ececec;
    padding: 1.2rem 1.5rem;
    animation: cart-item-in 280ms ease both;
}

.cart-drawer-thumb {
    display: block;
    width: 5.5rem;
    flex-shrink: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #ececec;
}

.cart-drawer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.cart-drawer-item:hover .cart-drawer-thumb img {
    transform: scale(1.04);
}

.cart-drawer-item-body {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
}

.cart-drawer-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.cart-drawer-item-name {
    display: block;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.25;
    transition: color 160ms ease;
}

.cart-drawer-item-name:hover {
    color: #525252;
}

.cart-drawer-item-meta {
    margin-top: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #737373;
}

.cart-drawer-remove {
    display: inline-flex;
    height: 1.75rem;
    width: 1.75rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: #a3a3a3;
    transition: color 160ms ease, transform 160ms ease;
}

.cart-drawer-remove:hover {
    color: #000;
    transform: scale(1.08);
}

.cart-drawer-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.cart-qty {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #000;
    background: #fff;
}

.cart-qty button {
    width: 2rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    transition: background 160ms ease, color 160ms ease;
}

.cart-qty button:hover {
    background: #000;
    color: #fff;
}

.cart-qty span {
    min-width: 2rem;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    padding: 0.4rem 0.2rem;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 900;
}

.cart-drawer-item-price {
    font-size: 0.95rem;
    font-weight: 900;
}

.cart-drawer-empty {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
}

.cart-drawer-empty-icon {
    display: flex;
    height: 4.5rem;
    width: 4.5rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid #d4d4d4;
    background: #fff;
    color: #525252;
}

.cart-drawer-empty h3 {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.cart-drawer-empty p {
    margin-top: 0.6rem;
    max-width: 16rem;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.55;
    color: #737373;
}

.cart-drawer-footer {
    padding: 1.25rem 1.5rem 1.5rem;
    border-top: 1px solid #e8e8e6;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
}

.cart-drawer-subtotal {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0.55rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cart-drawer-subtotal strong {
    font-size: 1.35rem;
    letter-spacing: -0.04em;
}

.cart-drawer-note {
    margin-bottom: 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #737373;
}

.cart-drawer-view-link {
    display: flex;
    justify-content: center;
    margin-top: 0.85rem;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #737373;
    transition: color 160ms ease;
}

.cart-drawer-view-link:hover {
    color: #000;
}

.cart-toast {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    z-index: 120;
    min-width: min(90vw, 18rem);
    padding: 0.9rem 1.2rem;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    transform: translate(-50%, 120%);
    opacity: 0;
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
    pointer-events: none;
}

.cart-toast.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

button.add-to-cart {
    border: 0;
    cursor: pointer;
    text-align: center;
}

button.add-to-cart:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.size-btn:disabled,
.size-btn.is-unavailable {
    border-color: #e5e5e5 !important;
    background: #f5f5f5 !important;
    color: #a3a3a3 !important;
    text-decoration: line-through;
    cursor: not-allowed;
}

.add-to-cart.is-loading {
    opacity: 0.7 !important;
    pointer-events: none;
}

@keyframes cart-item-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.option-choice {
    min-height: 2.85rem;
    border: 1px solid #d4d4d4;
    background: #fff;
    color: #000;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.option-choice:hover,
.option-choice.is-selected {
    border-color: #000;
    background: #000;
    color: #fff;
}

.mobile-menu-open {
    overflow: hidden;
}

.overlay-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .top-nav {
        height: 4.5rem;
    }

    .brand-logo {
        gap: 0.5rem;
    }

    .brand-mark {
        height: 1.65rem;
        width: 1.65rem;
    }

    .brand-word {
        font-size: 1.8rem;
    }

    .nav-icon {
        height: 2.1rem;
        width: 2.1rem;
    }

    .drawer-link,
    .drawer-summary {
        min-height: 2.9rem;
        font-size: 0.78rem;
        letter-spacing: 0.07em;
    }

    .mobile-drawer-panel {
        width: min(88vw, 20rem);
    }

    .drawer-panel-header {
        min-height: 4.15rem;
        padding-left: 1rem;
        padding-right: 0.85rem;
    }

    .drawer-sub-link {
        padding: 0.55rem 0.65rem;
        font-size: 0.72rem;
        letter-spacing: 0.07em;
    }

    .drawer-login-icon {
        height: 2.15rem;
        width: 2.15rem;
    }

    .drawer-social {
        height: 2.25rem;
        width: 2.25rem;
    }

    .login-poster {
        min-height: 34rem;
    }

    .hero-dot {
        width: 24px;
    }

    .hero-dot.is-active {
        width: 38px;
    }

    .drop-tabs-section > div {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }

    .drop-tab {
        min-height: 2.8rem;
        padding: 0 1rem;
        font-size: 0.8rem;
    }

    .drop-product-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(13.5rem, 72%);
        grid-template-columns: none;
        overflow-x: auto;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .drop-product-grid::-webkit-scrollbar {
        display: none;
    }

    .drop-product-card {
        scroll-snap-align: start;
    }

    .category-showcase + .product-ad,
    .product-ad + .category-showcase {
        margin-top: 3.5rem;
    }

    .category-slider {
        grid-auto-columns: minmax(13.75rem, 78%);
    }

    .commerce-dialog {
        bottom: 0;
        left: 0;
        top: auto;
        width: 100%;
        max-height: 88vh;
        transform: translateY(100%);
    }

    .commerce-modal.is-open .commerce-dialog {
        transform: translateY(0);
    }
}

/* Product reviews */
.reviews-section {
    margin-top: clamp(3.5rem, 8vw, 6rem);
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    border-top: 1px solid #d4d4d4;
}

.reviews-shell {
    max-width: 72rem;
    margin: 0 auto;
}

.reviews-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.reviews-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    line-height: 1;
}

.reviews-subtitle {
    max-width: 28rem;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.6;
    color: #737373;
}

.reviews-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 18.5rem minmax(0, 1fr);
        gap: 2rem;
        align-items: start;
    }
}

.reviews-summary-card,
.review-form,
.review-auth-card,
.review-card {
    border: 1px solid #e5e5e5;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
}

.reviews-summary-card {
    padding: 1.5rem;
    position: sticky;
    top: 7rem;
}

.reviews-score-block {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #ececec;
}

.reviews-score {
    font-size: 3.4rem;
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
}

.reviews-stars {
    display: flex;
    gap: 0.15rem;
    margin-top: 0.55rem;
    color: #d4d4d4;
}

.review-star.is-filled,
.review-star-btn.is-active {
    color: #111;
}

.reviews-count {
    margin-top: 0.55rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #737373;
}

.reviews-distribution {
    display: grid;
    gap: 0.65rem;
}

.reviews-bar-row {
    display: grid;
    grid-template-columns: 2rem 1fr 1.5rem;
    gap: 0.65rem;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #525252;
}

.reviews-bar-track {
    height: 0.4rem;
    overflow: hidden;
    background: #ececec;
}

.reviews-bar-fill {
    height: 100%;
    background: #111;
    transition: width 280ms ease;
}

.reviews-main {
    display: grid;
    gap: 1.25rem;
}

.review-form,
.review-auth-card {
    padding: 1.5rem;
}

.review-form-head h3,
.review-auth-card h3,
.reviews-empty h3 {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.review-form-head p,
.review-auth-card p,
.reviews-empty p {
    margin-top: 0.45rem;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.55;
    color: #737373;
}

.review-rating-picker {
    margin: 1.25rem 0 1rem;
}

.review-rating-label,
.review-field > span {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.review-rating-stars {
    display: flex;
    gap: 0.25rem;
}

.review-star-btn {
    border: 0;
    background: transparent;
    color: #d4d4d4;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
    transition: color 140ms ease, transform 140ms ease;
}

.review-star-btn:hover,
.review-star-btn.is-active {
    color: #111;
    transform: translateY(-1px);
}

.review-field textarea {
    width: 100%;
    border: 1px solid #d4d4d4;
    background: #fff;
    padding: 0.95rem 1rem;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.6;
    color: #171717;
    resize: vertical;
    min-height: 8rem;
    transition: border-color 160ms ease;
}

.review-field textarea:focus {
    outline: none;
    border-color: #111;
}

.review-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.review-form-note {
    font-size: 0.75rem;
    font-weight: 700;
    color: #737373;
}

.review-form-note.is-error {
    color: #b91c1c;
}

.review-form-note.is-success {
    color: #166534;
}

.review-auth-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .review-auth-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.review-auth-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.review-auth-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0 1.25rem;
    border: 1px solid #111;
    background: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 160ms ease, color 160ms ease;
}

.review-auth-secondary:hover {
    background: #111;
    color: #fff;
}

.reviews-list {
    display: grid;
    gap: 1rem;
}

.review-card {
    padding: 1.25rem 1.35rem;
    animation: cart-item-in 280ms ease both;
}

.review-card-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
    align-items: start;
}

.review-avatar {
    display: flex;
    height: 2.6rem;
    width: 2.6rem;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.review-author {
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.review-card-stars {
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

.review-date {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a3a3a3;
}

.review-body {
    margin-top: 0.95rem;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.7;
    color: #404040;
}

.reviews-empty {
    padding: 2.5rem 1.5rem;
    border: 1px dashed #d4d4d4;
    background: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Product description */
.product-details-section {
    margin-top: clamp(3rem, 7vw, 5rem);
    padding-top: clamp(2.25rem, 5vw, 3.25rem);
    border-top: 1px solid #d4d4d4;
}

.product-details-shell {
    max-width: 72rem;
    margin: 0 auto;
}

.product-details-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e5e5e5;
}

.product-details-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 1;
}

.product-description {
    max-width: 48rem;
    color: #404040;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.8;
}

.product-description > *:first-child {
    margin-top: 0;
}

.product-description > *:last-child {
    margin-bottom: 0;
}

.product-description p {
    margin: 0 0 1rem;
}

.product-description h1,
.product-description h2,
.product-description h3,
.product-description h4 {
    margin: 1.6rem 0 0.7rem;
    color: #111;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1.15;
}

.product-description h2 {
    font-size: 1.35rem;
}

.product-description h3 {
    font-size: 1.1rem;
}

.product-description ul,
.product-description ol {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.45rem;
}

.product-description li {
    padding-left: 0.2rem;
}

.product-description a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-description strong,
.product-description b {
    color: #111;
    font-weight: 900;
}

.product-description img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.25rem 0;
}

.size-guide-dialog {
    width: min(94vw, 44rem);
    max-height: min(90vh, 52rem);
    padding: 0;
    display: flex;
    flex-direction: column;
}

.size-guide-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    border-bottom: 1px solid #e8e8e6;
}

.size-guide-title {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 1.1;
}

.size-guide-body {
    padding: 1.25rem 1.35rem 1.5rem;
    overflow-y: auto;
}

.size-guide-image {
    display: block;
    width: 100%;
    height: auto;
    background: #f5f5f5;
}

/* Shop / filter page */
.filter-page {
    min-height: 60vh;
}

.filter-panel {
    display: flex;
    flex-direction: column;
}

.filter-choice {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4d4d4;
    background: #fff;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.filter-choice:hover {
    border-color: #111;
}

.filter-choice.is-active {
    border-color: #111;
    background: #111;
    color: #fff;
}

.filter-color {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.55rem 0.35rem 0.35rem;
    border: 1px solid #e5e5e5;
    background: #fff;
    cursor: pointer;
    transition: border-color 160ms ease;
}

.filter-color:hover,
.filter-color.is-active {
    border-color: #111;
}

.filter-color-swatch {
    display: block;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
}

.filter-color-swatch.is-light {
    border: 1px solid #d4d4d4;
}

.filter-color-name {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #525252;
}

.filter-clear-link {
    display: flex;
    justify-content: center;
    padding: 0.7rem 0;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #737373;
    transition: color 160ms ease;
}

.filter-clear-link:hover {
    color: #111;
}

.filter-sort {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.filter-sort-select {
    border: 1px solid #111;
    background: #fff;
    padding: 0.65rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    padding: 0.4rem 0.75rem;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.filter-empty {
    border: 1px dashed #d4d4d4;
    background: rgba(255, 255, 255, 0.78);
    padding: 3.5rem 1.5rem;
    text-align: center;
}

.filter-empty h2 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.filter-empty p {
    margin-top: 0.65rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #737373;
}

.filter-pagination nav {
    display: flex;
    justify-content: center;
}

.filter-pagination .pagination,
.filter-pagination nav > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.filter-pagination a,
.filter-pagination span {
    display: inline-flex;
    min-width: 2.5rem;
    min-height: 2.5rem;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4d4d4;
    background: #fff;
    padding: 0 0.7rem;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.filter-pagination .active span,
.filter-pagination [aria-current="page"] span,
.filter-pagination span[aria-current="page"] {
    border-color: #111;
    background: #111;
    color: #fff;
}

.filter-sidebar-backdrop {
    display: none;
}

@media (max-width: 767px) {
    .filter-sidebar {
        position: fixed;
        inset: 0;
        z-index: 100;
        width: 100%;
        padding: 0;
    }

    .filter-sidebar.is-open {
        display: block;
    }

    .filter-sidebar-backdrop {
        display: block;
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.42);
    }

    .filter-sidebar .filter-panel {
        position: absolute;
        left: 0;
        top: 0;
        width: min(92vw, 22rem);
        height: 100%;
        overflow-y: auto;
        border-radius: 0;
        transform: translateX(-100%);
        transition: transform 240ms ease;
        z-index: 1;
    }

    .filter-sidebar.is-open .filter-panel {
        transform: translateX(0);
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* —— Site-wide motion —— */
.scroll-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
}

.product-card.scroll-reveal.is-visible:hover {
    transform: translateY(-4px);
}

.page-enter {
    animation: page-enter 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.inner-page-banner.scroll-reveal {
    transform: translateY(12px) scale(0.985);
}

.inner-page-banner.scroll-reveal.is-visible {
    transform: none;
}

.inner-page-banner-title {
    animation: banner-title-in 700ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.btn-primary:active,
.btn-secondary:active {
    transform: translateY(0);
}

footer.border-t {
    animation: page-enter 720ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
}

@keyframes page-enter {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes banner-title-in {
    from {
        opacity: 0;
        transform: translateY(18px);
        letter-spacing: 0.18em;
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .page-enter,
    .inner-page-banner-title,
    footer.border-t,
    .drawer-social,
    .drawer-social-block .drawer-section-label,
    .drawer-nav > .drawer-link,
    .drawer-nav > .drawer-details {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }

    .mobile-drawer.is-open .drawer-social,
    .mobile-drawer.is-open .drawer-social-block .drawer-section-label,
    .mobile-drawer.is-open .drawer-nav > .drawer-link,
    .mobile-drawer.is-open .drawer-nav > .drawer-details {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .btn-primary:hover,
    .btn-secondary:hover,
    .nav-icon:hover,
    .product-card:hover {
        transform: none;
    }
}

