:root {
    --ink: #161616;
    --muted: #6f747b;
    --paper: #fbfaf7;
    --surface: #ffffff;
    --line: #e5e1da;
    --accent: #f05a28;
    --teal: #00a896;
    --gold: #f5b700;
    --rose: #ef476f;
    --blue: #3a86ff;
    --shadow: 0 22px 60px rgba(20, 20, 20, 0.12);
    --soft-shadow: 0 16px 34px rgba(22, 22, 22, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.section-pad {
    padding: 86px 0;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.lead {
    color: #4f545b;
    font-size: 1.08rem;
    line-height: 1.75;
}

.btn {
    border-radius: 8px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.btn-accent:hover,
.btn-accent:focus {
    background: #d84c1f;
    border-color: #d84c1f;
    color: #fff;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink);
    font-weight: 800;
}

.text-link:hover {
    color: var(--accent);
}

.top-strip {
    background: #111;
    color: #fff;
    font-size: 0.86rem;
    padding: 9px 0;
}

.top-strip span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.store-nav {
    background: rgba(251, 250, 247, 0.94);
    border-bottom: 1px solid rgba(22, 22, 22, 0.08);
    backdrop-filter: blur(14px);
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 950;
    text-transform: uppercase;
}

.navbar-brand span,
.footer-brand span {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 800;
    padding-inline: 13px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--accent);
}

.nav-search {
    position: relative;
    width: 215px;
    margin-right: 12px;
}

.nav-search i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}

.nav-search input {
    width: 100%;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 0 12px 0 38px;
    outline: 0;
}

.nav-search input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.12);
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    display: inline-grid;
    place-items: center;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.icon-btn:hover,
.icon-btn.active {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
    transform: translateY(-1px);
}

.count-badge {
    position: absolute;
    right: -6px;
    top: -7px;
    min-width: 19px;
    height: 19px;
    border-radius: 19px;
    background: var(--rose);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 0 5px;
}

.hero-section {
    background: #111;
}

.hero-slide {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    height: calc(100vh - 184px);
    max-height: 690px;
    display: flex;
    align-items: center;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.73), rgba(0, 0, 0, 0.24)), var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35));
    pointer-events: none;
    z-index: 1;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 48px 0;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    font-size: 4.1rem;
    line-height: 1;
    font-weight: 950;
}

.hero-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
    max-width: 590px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 8px 11px;
    font-size: 0.9rem;
    font-weight: 850;
    backdrop-filter: blur(10px);
}

.hero-highlights i {
    color: var(--gold);
}

.carousel-indicators [data-bs-target] {
    width: 34px;
    height: 5px;
    border: 0;
    border-radius: 10px;
}

.marquee-band {
    overflow: hidden;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--accent);
    background: var(--ink);
    color: #fff;
    padding: 13px 0;
}

.marquee-track {
    display: flex;
    gap: 34px;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    font-weight: 900;
    white-space: nowrap;
}

.marquee-track i {
    color: var(--gold);
    font-size: 1rem;
}

.marquee-track span::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.trust-ribbon {
    position: relative;
    background:
        radial-gradient(circle at 12% 0%, rgba(240, 90, 40, 0.16), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(0, 168, 150, 0.14), transparent 28%),
        #fff;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.trust-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 13px;
    min-width: 0;
    min-height: 86px;
    border: 1px solid var(--tone-line, var(--line));
    border-radius: 8px;
    background: linear-gradient(135deg, var(--tone-soft, rgba(240, 90, 40, 0.12)), #fff 68%);
    padding: 15px;
    box-shadow: var(--soft-shadow);
}

.trust-card > i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--tone-soft, rgba(240, 90, 40, 0.12));
    color: var(--tone);
    font-size: 1.35rem;
}

.trust-card strong,
.trust-card span {
    display: block;
}

.trust-card strong {
    font-weight: 950;
}

.trust-card span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.35;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.section-heading {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 22px;
    margin-bottom: 34px;
}

.section-heading h2,
.about-section h2,
.lookbook-copy h2,
.payment-section h2,
.product-info-panel h1 {
    margin: 0;
    font-size: 2.55rem;
    line-height: 1.06;
    font-weight: 950;
}

.vertical-kicker {
    align-self: stretch;
    min-height: 96px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: inline-flex;
    justify-content: center;
    color: transparent;
    -webkit-text-stroke: 1px var(--ink);
    text-stroke: 1px var(--ink);
    font-size: 0.9rem;
    font-weight: 950;
    text-transform: uppercase;
}

.mag-title span,
.display-mag .drop-letter {
    color: var(--accent);
}

.mag-title em,
.display-mag .outline-word {
    color: transparent;
    -webkit-text-stroke: 1px var(--ink);
    text-stroke: 1px var(--ink);
    font-style: normal;
}

.display-mag {
    margin: 0 0 20px;
    font-size: 4rem;
    line-height: 0.98;
    font-weight: 950;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.category-tile {
    position: relative;
    min-height: 250px;
    border-radius: 8px;
    overflow: hidden;
    isolation: isolate;
    background: #111;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
}

.category-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    font-size: 1.18rem;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.76));
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: scale(1.02);
    transition: transform 0.35s ease;
}

.category-tile:hover img {
    transform: scale(1.09);
}

.category-tile span {
    font-size: 1.18rem;
    font-weight: 950;
}

.category-tile small {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.45;
}

.category-tile:hover {
    box-shadow: inset 0 -5px 0 var(--accent);
}

.editorial-band {
    background:
        linear-gradient(90deg, rgba(22, 22, 22, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(22, 22, 22, 0.025) 1px, transparent 1px),
        #fff;
    background-size: 36px 36px;
    border-block: 1px solid var(--line);
}

.stacked-images {
    position: relative;
    min-height: 590px;
    isolation: isolate;
}

.stacked-images::before {
    content: "";
    position: absolute;
    left: 44px;
    right: 28px;
    top: 52px;
    bottom: 32px;
    z-index: -1;
    border: 1px solid rgba(22, 22, 22, 0.1);
    border-radius: 8px;
    background:
        repeating-linear-gradient(135deg, rgba(240, 90, 40, 0.11) 0 8px, transparent 8px 16px),
        #fffaf5;
    transform: rotate(-2deg);
}

.stack-card {
    position: absolute;
    margin: 0;
    width: 68%;
    height: 74%;
    border-radius: 8px;
    overflow: hidden;
    border: 8px solid #fff;
    background: #fff;
    box-shadow: 0 26px 70px rgba(22, 22, 22, 0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.stack-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.36)),
        linear-gradient(45deg, rgba(240, 90, 40, 0.2), transparent 42%);
    pointer-events: none;
}

.stack-card::after {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 6px;
    pointer-events: none;
}

.stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(1.08) contrast(1.04);
    transition: transform 0.42s ease, filter 0.42s ease;
}

.stack-card figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: calc(100% - 36px);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    padding: 9px 12px;
    font-size: 0.86rem;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.stack-card figcaption i {
    color: var(--accent);
}

.stacked-images:hover .stack-card {
    box-shadow: 0 30px 80px rgba(22, 22, 22, 0.22);
}

.stacked-images:hover .stack-card img {
    transform: scale(1.08);
    filter: saturate(1.15) contrast(1.06);
}

.stack-front {
    left: 0;
    bottom: 0;
    z-index: 2;
    transform: rotate(-1.5deg);
}

.stacked-images:hover .stack-front {
    transform: translateY(-8px) rotate(-1.5deg);
}

.stack-back {
    top: 0;
    right: 0;
    z-index: 1;
    transform: rotate(1.5deg);
}

.stack-back::before {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28)),
        linear-gradient(45deg, rgba(58, 134, 255, 0.2), transparent 42%);
}

.stacked-images:hover .stack-back {
    transform: translateY(8px) rotate(1.5deg);
}

.image-chip {
    position: absolute;
    left: 34px;
    top: 36px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(22, 22, 22, 0.1);
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    padding: 10px 13px;
    box-shadow: var(--soft-shadow);
    font-size: 0.82rem;
    font-weight: 950;
    text-transform: uppercase;
}

.vertical-note {
    position: absolute;
    right: 5px;
    bottom: 24px;
    z-index: 3;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background: var(--gold);
    color: var(--ink);
    padding: 14px 9px;
    border-radius: 8px;
    font-weight: 950;
    box-shadow: var(--soft-shadow);
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0;
}

.stat-row div {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(145deg, var(--stat-wash, #fff4ee), #fff);
    box-shadow: var(--soft-shadow);
}

.stat-row div::after {
    content: "";
    position: absolute;
    right: -18px;
    top: -22px;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--stat-soft, rgba(240, 90, 40, 0.14));
}

.stat-row i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 13px;
    border-radius: 8px;
    background: var(--stat);
    color: #fff;
    font-size: 1.05rem;
}

.stat-row strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
}

.stat-row span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.9rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(22, 22, 22, 0.18);
}

.product-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #eee;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.product-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    max-width: calc(100% - 24px);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    padding: 7px 10px;
    font-size: 0.75rem;
    font-weight: 950;
}

.product-body {
    padding: 15px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.product-category {
    margin: 0 0 3px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0;
    min-height: 2.7em;
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 950;
}

.product-card h3 a:hover {
    color: var(--accent);
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.product-meta strong {
    font-size: 1.08rem;
}

.product-meta span {
    color: var(--muted);
    font-size: 0.88rem;
    text-decoration: line-through;
}

.product-rating {
    margin-top: 7px;
    color: #4d5157;
    font-weight: 800;
    font-size: 0.9rem;
}

.product-rating i {
    color: var(--gold);
}

.product-rating small {
    color: var(--muted);
    font-weight: 700;
}

.product-mini-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    margin-top: 13px;
}

.product-mini-gallery button {
    position: relative;
    min-width: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 8px;
    background: #f3f0ea;
    padding: 0;
    box-shadow: inset 0 0 0 1px var(--line);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-mini-gallery button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.12));
    opacity: 0;
    transition: opacity 0.18s ease;
}

.product-mini-gallery button:hover,
.product-mini-gallery button:focus,
.product-mini-gallery button.active {
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(240, 90, 40, 0.18);
    transform: translateY(-2px);
}

.product-mini-gallery button:hover::after,
.product-mini-gallery button:focus::after,
.product-mini-gallery button.active::after {
    opacity: 1;
}

.product-mini-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-swatches,
.quick-swatches {
    display: flex;
    gap: 7px;
    margin-top: 12px;
}

.product-swatches span,
.quick-swatches span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #fff;
    outline: 1px solid var(--line);
    background: var(--swatch);
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 44px 44px;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
}

.product-actions .btn {
    min-height: 42px;
    padding-inline: 10px;
}

.service-band {
    background: #161616;
    color: #fff;
}

.service-item {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 24px;
    background:
        linear-gradient(145deg, var(--service-soft, rgba(240, 90, 40, 0.24)), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.04);
}

.service-item::after {
    content: "";
    position: absolute;
    right: -32px;
    top: -34px;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: var(--service-soft, rgba(240, 90, 40, 0.24));
}

.service-item i {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--service-accent);
    color: #fff;
    font-size: 1.35rem;
}

.service-item h3 {
    position: relative;
    z-index: 1;
    margin: 20px 0 8px;
    font-size: 1.22rem;
    font-weight: 950;
}

.service-item p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.6;
}

.lookbook-section {
    background: #f2eee6;
}

.lookbook-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
    align-items: center;
}

.lookbook-copy p:not(.eyebrow) {
    color: #4d514e;
    line-height: 1.75;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.lookbook-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.lookbook-grid img:first-child {
    grid-row: span 2;
    height: 574px;
}

.payment-section {
    background: #fff;
}

.method-panel {
    height: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    padding: 24px;
}

.method-panel h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    font-size: 1.25rem;
    font-weight: 950;
}

.method-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.method-row strong,
.method-row span {
    display: block;
}

.method-row span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.94rem;
}

.method-row em {
    color: var(--ink);
    font-style: normal;
    font-weight: 950;
    white-space: nowrap;
}

.method-row > i {
    color: var(--teal);
    font-size: 1.35rem;
}

.about-section {
    background: var(--ink);
    color: #fff;
}

.about-section p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.about-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.about-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    color: #fff;
}

.faq-accordion {
    max-width: 920px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.accordion-button {
    font-weight: 900;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: #fff4ee;
    color: var(--ink);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.page-hero {
    min-height: 390px;
    display: flex;
    align-items: center;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.25)), var(--hero-image);
    background-size: cover;
    background-position: center;
}

.compact-hero {
    min-height: 330px;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 9px 13px;
    font-weight: 850;
}

.filter-pill.active,
.filter-pill:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.catalog-sort {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
}

.catalog-sort label {
    color: var(--muted);
    font-weight: 800;
}

.catalog-sort .form-select {
    width: 190px;
    border-radius: 8px;
}

.search-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 10px 13px;
    font-weight: 850;
}

.catalog-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 10px;
}

.catalog-sidebar h2 {
    margin: 0 0 5px;
    font-size: 1.25rem;
    font-weight: 950;
}

.catalog-sidebar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--line);
    border-left: 5px solid var(--accent);
    border-radius: 8px;
    background: #fff;
    padding: 13px;
    font-weight: 850;
}

.catalog-sidebar a:hover {
    transform: translateX(3px);
}

.delivery-box {
    display: grid;
    gap: 7px;
    margin-top: 10px;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    padding: 18px;
}

.delivery-box i {
    color: var(--gold);
    font-size: 1.45rem;
}

.delivery-box span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

.catalog-count {
    margin-bottom: 14px;
    color: var(--muted);
    font-weight: 850;
}

.empty-results {
    display: none;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 48px 20px;
}

.empty-results.show {
    display: block;
}

.empty-results i {
    color: var(--rose);
    font-size: 2.5rem;
}

.product-detail {
    background: #fff;
}

.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    color: var(--muted);
    font-weight: 800;
}

.breadcrumb-nav a:hover {
    color: var(--accent);
}

.product-gallery {
    position: sticky;
    top: 110px;
}

.zoom-host {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
    cursor: zoom-in;
}

.zoom-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.zoom-lens {
    position: absolute;
    width: 130px;
    height: 130px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 999px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.zoom-cloud {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 210px;
    height: 210px;
    border: 4px solid #fff;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-size: 240%;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.zoom-host:hover .zoom-lens,
.zoom-host:hover .zoom-cloud {
    opacity: 1;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.gallery-thumbs button {
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    background: #eee;
}

.gallery-thumbs button.active {
    border-color: var(--accent);
}

.gallery-thumbs img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-info-panel {
    padding: 18px 0;
}

.detail-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    color: var(--muted);
    font-weight: 850;
}

.detail-rating i {
    color: var(--gold);
}

.detail-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.detail-price strong {
    font-size: 2rem;
    font-weight: 950;
}

.detail-price span {
    color: var(--muted);
    text-decoration: line-through;
}

.detail-description {
    margin-top: 18px;
    color: #4f545b;
    line-height: 1.75;
}

.option-block {
    margin-top: 24px;
}

.option-block h2 {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 950;
}

.color-options,
.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.color-options button {
    width: 38px;
    height: 38px;
    border: 3px solid #fff;
    outline: 1px solid var(--line);
    border-radius: 50%;
    background: var(--swatch);
}

.color-options button.active,
.size-options button.active {
    outline: 3px solid rgba(240, 90, 40, 0.35);
    border-color: var(--ink);
}

.size-options button {
    min-width: 48px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    font-weight: 900;
}

.purchase-row,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.qty-control {
    display: inline-grid;
    grid-template-columns: 42px 58px 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    height: 48px;
}

.qty-control button,
.qty-control input {
    border: 0;
    background: #fff;
    text-align: center;
    font-weight: 950;
}

.qty-control input {
    border-inline: 1px solid var(--line);
    appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.detail-add {
    min-width: 220px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}

.feature-list span {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    padding: 12px;
    font-weight: 800;
}

.feature-list i {
    color: var(--teal);
}

.detail-accordion {
    margin-top: 24px;
}

.related-section {
    background: var(--paper);
}

.checkout-hero {
    min-height: 330px;
}

.checkout-form,
.order-summary {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 24px;
}

.form-section {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.form-section h2,
.order-summary h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    font-size: 1.35rem;
    font-weight: 950;
}

.form-control,
.form-select {
    min-height: 46px;
    border-color: var(--line);
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.12);
}

.choice-grid {
    display: grid;
    gap: 10px;
}

.choice-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    cursor: pointer;
}

.choice-card:has(input:checked) {
    border-color: var(--accent);
    background: #fff4ee;
}

.choice-card strong,
.choice-card small {
    display: block;
}

.choice-card small {
    color: var(--muted);
}

.choice-card em {
    font-style: normal;
    font-weight: 950;
    white-space: nowrap;
}

.order-summary {
    position: sticky;
    top: 100px;
}

.summary-item,
.cart-item,
.wishlist-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
}

.summary-item img,
.cart-item img,
.wishlist-item img {
    width: 72px;
    height: 82px;
    object-fit: cover;
    border-radius: 8px;
}

.summary-item h3,
.cart-item h3,
.wishlist-item h3 {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 950;
}

.summary-item span,
.cart-item span,
.wishlist-item span {
    color: var(--muted);
    font-size: 0.88rem;
}

.summary-lines,
.cart-totals {
    margin-top: 16px;
}

.summary-lines div,
.cart-totals div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
}

.summary-lines .grand,
.cart-totals .cart-grand {
    border-top: 1px solid var(--line);
    margin-top: 5px;
    padding-top: 14px;
    font-size: 1.15rem;
    font-weight: 950;
}

.checkout-empty,
.cart-empty,
.wishlist-empty,
.compare-empty {
    color: var(--muted);
    border: 1px dashed var(--line);
    border-radius: 8px;
    padding: 18px;
    text-align: center;
}

.site-footer {
    background: #101010;
    color: #fff;
    padding: 68px 0 24px;
}

.site-footer p,
.site-footer a,
.site-footer li {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
    color: #fff;
}

.site-footer h3 {
    margin: 0 0 16px;
    font-size: 1.05rem;
    font-weight: 950;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-brand {
    margin-bottom: 18px;
    color: #fff;
}

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

.social-row a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.newsletter-form input {
    min-width: 0;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0 13px;
}

.payment-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.payment-chips span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 8px 10px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.footer-marquee {
    overflow: hidden;
    border-top: 1px solid rgba(22, 22, 22, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(90deg, rgba(240, 90, 40, 0.95), rgba(239, 71, 111, 0.95)),
        var(--accent);
    color: #fff;
    padding: 13px 0;
}

.footer-marquee-track {
    display: flex;
    width: max-content;
    gap: 34px;
    animation: marquee 30s linear infinite;
}

.footer-marquee-track span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    font-weight: 950;
    text-transform: uppercase;
    font-size: 0.92rem;
}

.footer-marquee-track i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.footer-marquee-track span::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateY(-50%);
}

.quick-view,
.compare-modal,
.wishlist-modal {
    border: 0;
    border-radius: 8px;
    overflow: hidden;
}

.quick-view .btn-close {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 5;
    background-color: #fff;
    border-radius: 50%;
}

.quick-image {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.quick-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
}

.quick-title {
    margin: 0;
    font-size: 2.1rem;
    font-weight: 950;
}

.quick-price {
    margin-top: 14px;
    font-size: 1.55rem;
    font-weight: 950;
}

.quick-description {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.65;
}

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.store-offcanvas {
    border-left: 0;
}

.store-offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--line);
}

.store-offcanvas h2,
.compare-modal h2,
.wishlist-modal h2 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 950;
}

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

.cart-item-actions button,
.remove-btn {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    display: inline-grid;
    place-items: center;
}

.compare-table th,
.compare-table td {
    min-width: 190px;
    vertical-align: top;
}

.compare-table img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.compare-table ul {
    margin: 0;
    padding-left: 18px;
}

.toast-area {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1080;
    display: grid;
    gap: 10px;
}

.store-toast {
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    padding: 12px 14px;
    box-shadow: var(--shadow);
    font-weight: 850;
}

@media (max-width: 1199.98px) {
    .category-grid,
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 3.3rem;
    }
}

@media (max-width: 991.98px) {
    .section-pad {
        padding: 66px 0;
    }

    .navbar-collapse {
        padding: 18px 0;
    }

    .nav-search {
        width: 100%;
        margin: 8px 0 12px;
    }

    .nav-tools {
        justify-content: flex-start;
    }

    .hero-slide {
        min-height: 480px;
        height: auto;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading {
        grid-template-columns: auto 1fr;
    }

    .section-heading .text-link {
        grid-column: 2;
        justify-self: start;
    }

    .lookbook-layout {
        grid-template-columns: 1fr;
    }

    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-sidebar,
    .product-gallery,
    .order-summary {
        position: static;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .top-strip .container {
        justify-content: center !important;
        text-align: center;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 2.45rem;
    }

    .hero-copy p:not(.eyebrow),
    .page-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .category-tile {
        min-height: 210px;
    }

    .stacked-images {
        min-height: 470px;
    }

    .stack-card {
        width: 78%;
        height: 68%;
    }

    .image-chip {
        left: 18px;
        top: 18px;
    }

    .vertical-note {
        right: 0;
    }

    .display-mag {
        font-size: 3rem;
    }

    .section-heading h2,
    .about-section h2,
    .lookbook-copy h2,
    .payment-section h2,
    .product-info-panel h1 {
        font-size: 2rem;
    }

    .stat-row {
        grid-template-columns: 1fr;
    }

    .lookbook-grid img,
    .lookbook-grid img:first-child {
        height: 240px;
    }

    .lookbook-grid img:first-child {
        grid-row: auto;
    }

    .checkout-form,
    .order-summary,
    .method-panel {
        padding: 18px;
    }

    .quick-image {
        min-height: 280px;
    }

    .quick-content {
        padding: 28px;
    }

    .zoom-cloud {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 575.98px) {
    .section-pad {
        padding: 52px 0;
    }

    .hero-slide {
        min-height: 430px;
    }

    .hero-copy {
        padding: 34px 0;
    }

    .hero-highlights {
        gap: 8px;
    }

    .hero-highlights span {
        width: 100%;
    }

    .hero-actions .btn,
    .purchase-row .btn,
    .detail-actions .btn {
        width: 100%;
    }

    .section-heading {
        grid-template-columns: 1fr;
    }

    .vertical-kicker {
        writing-mode: horizontal-tb;
        transform: none;
        min-height: 0;
        justify-content: flex-start;
    }

    .section-heading .text-link {
        grid-column: auto;
    }

    .category-grid,
    .product-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .product-card h3 {
        min-height: 0;
    }

    .product-actions {
        grid-template-columns: 1fr 44px 44px;
    }

    .stacked-images {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .stacked-images::before,
    .image-chip,
    .vertical-note {
        display: none;
    }

    .stack-card {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        transform: none;
    }

    .stacked-images:hover .stack-front,
    .stacked-images:hover .stack-back {
        transform: none;
    }

    .display-mag {
        font-size: 2.35rem;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .summary-item,
    .cart-item,
    .wishlist-item {
        grid-template-columns: 62px 1fr;
    }

    .summary-item > strong,
    .cart-item > strong,
    .wishlist-item > strong,
    .cart-item-actions {
        grid-column: 2;
        justify-self: start;
    }

    .zoom-cloud,
    .zoom-lens {
        display: none;
    }
}
