:root {
    --bg: #120f0b;
    --bg-soft: #1b1611;
    --panel: rgba(32, 26, 19, 0.82);
    --panel-solid: #1f1913;
    --panel-light: #f7efe1;
    --panel-cream: #fff8ef;
    --text: #f7f0e4;
    --text-soft: rgba(247, 240, 228, 0.78);
    --ink: #221a13;
    --ink-soft: #695a4b;
    --gold: #d7b36a;
    --gold-strong: #f0cb81;
    --gold-shadow: rgba(215, 179, 106, 0.28);
    --line: rgba(255, 244, 226, 0.12);
    --line-dark: rgba(74, 55, 31, 0.16);
    --shadow-xl: 0 28px 80px rgba(0, 0, 0, 0.32);
    --shadow-lg: 0 18px 42px rgba(0, 0, 0, 0.24);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --header-height: 76px;
    --layout-max-width: 1240px;
    --layout-gutter: clamp(16px, 2.8vw, 36px);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    margin: 0;
    padding: 0;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-height: 100svh;
    background:
        radial-gradient(circle at 14% 22%, rgba(240, 203, 129, 0.2), transparent 32%),
        radial-gradient(circle at 86% 24%, rgba(126, 81, 32, 0.14), transparent 24%),
        linear-gradient(180deg, #19130d 0%, #1b150f 44%, #15100b 100%);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

body.cart-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

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

.site-backdrop {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.04), transparent 18%, transparent 80%, rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at center, rgba(247, 239, 225, 0.03), transparent 48%);
    opacity: 0.9;
}

.site-header,
.storefront,
.site-footer {
    position: relative;
    z-index: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    margin-top: 0;
    background: rgba(15, 12, 8, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.site-header-inner {
    width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    margin: 0 auto;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(22, 18, 13, 0.92), rgba(9, 7, 5, 0.98));
    border: 1px solid rgba(255, 234, 195, 0.14);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    flex: 0 0 auto;
    min-width: 0;
}

.brand-mark img {
    width: clamp(34px, 4.2vw, 40px);
    height: clamp(34px, 4.2vw, 40px);
    padding: clamp(3px, 0.65vw, 5px);
    border-radius: 50%;
    object-fit: cover;
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.08), rgba(8, 6, 5, 0.96) 64%),
        #0e0b09;
    border: 1px solid rgba(242, 203, 129, 0.26);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.3);
}

.brand-copy {
    display: grid;
    gap: 2px;
    line-height: 1;
}

.brand-copy span {
    font-size: clamp(0.52rem, 0.62vw, 0.7rem);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
}

.brand-copy strong {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(0.96rem, 1.25vw, 1.38rem);
    font-weight: 700;
    letter-spacing: 0.09em;
    color: var(--panel-cream);
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 760px;
    margin: 0 auto;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    overflow-x: auto;
    scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
    display: none;
}

.site-nav a {
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--text-soft);
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(215, 179, 106, 0.14);
    color: var(--text);
    transform: translateY(-1px);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
}

.header-clock {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    min-width: 132px;
    padding: 8px 12px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(20, 16, 11, 0.92), rgba(10, 8, 5, 0.96));
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.header-clock span {
    font-size: 0.54rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.header-clock strong {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--panel-cream);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.menu-toggle,
.header-cta,
.gold-button,
.ghost-button,
.icon-button,
.filter-chip,
.product-action,
.cart-fab {
    border: 0;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid var(--line);
    font-size: 1.35rem;
    line-height: 1;
}

.header-cta,
.gold-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.header-cta,
.gold-button,
.product-action {
    background: linear-gradient(135deg, var(--gold), var(--gold-strong));
    color: #24190b;
    box-shadow: 0 16px 32px var(--gold-shadow);
}

.header-cta {
    min-height: 52px;
    padding: 0 22px;
    font-weight: 800;
}

.ghost-button,
.icon-button {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}

.header-cta:hover,
.gold-button:hover,
.ghost-button:hover,
.icon-button:hover,
.filter-chip:hover,
.product-action:hover,
.cart-fab:hover,
.menu-toggle:hover {
    transform: translateY(-2px);
}

.header-cta:hover,
.header-cta:focus-visible {
    background: linear-gradient(135deg, var(--gold), var(--gold-strong));
    color: #24190b;
    box-shadow: 0 16px 32px var(--gold-shadow);
}

.nav-carousel-actions,
.nav-carousel-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-carousel-dots button {
    border-radius: 999px;
}

.nav-carousel-dots {
    margin-top: 16px;
}

.nav-carousel-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: transparent;
    cursor: pointer;
}

.nav-carousel-dots button.is-active {
    width: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-strong));
    border-color: transparent;
}

.storefront {
    width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    margin: 0 auto;
    padding: 0 0 88px;
}

.hero-section,
.proof-strip,
.featured-section,
.catalog-section,
.process-section,
.order-tracking-section,
.contact-section,
.testimonial-section {
    margin-bottom: 34px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    gap: clamp(12px, 1.8vw, 20px);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: clamp(520px, calc(100svh - var(--header-height) - 20px), 860px);
    padding: clamp(14px, 2.4vw, 30px) 0;
    background: #120d09;
    isolation: isolate;
}

.hero-background-carousel,
.hero-section-overlay {
    position: absolute;
    inset: 0;
}

.hero-background-carousel {
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-bg-slide.is-active {
    opacity: 1;
}

.hero-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    transform: scale(1.05);
    transition: transform 4.8s ease;
    filter: brightness(1.2) contrast(1.03) saturate(1.02);
}

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

.hero-section-overlay {
    z-index: 1;
    background:
        radial-gradient(circle at 14% 26%, rgba(255, 232, 192, 0.24), transparent 44%),
        linear-gradient(90deg, rgba(16, 11, 8, 0.5) 0%, rgba(16, 11, 8, 0.34) 38%, rgba(16, 11, 8, 0.22) 58%, rgba(16, 11, 8, 0.44) 100%),
        linear-gradient(180deg, rgba(10, 7, 5, 0.08), rgba(10, 7, 5, 0.3));
}

.hero-content,
.hero-carousel-bar {
    position: relative;
    z-index: 2;
    width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    margin-inline: auto;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: clamp(14px, 2vw, 28px);
    align-items: start;
}

.hero-copy {
    max-width: 56ch;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.process-card h3,
.service-card h3,
.contact-card h3,
.cart-header h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    line-height: 0.98;
}

.hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(2rem, 3.8vw, 4.1rem);
    line-height: 1.02;
    margin-bottom: 10px;
    text-wrap: balance;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.hero-copy .eyebrow,
.hero-motto,
.hero-text {
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

.hero-motto {
    margin: 0 0 12px;
    max-width: 32ch;
    color: rgba(255, 247, 234, 0.94);
    font-size: clamp(1rem, 1.45vw, 1.24rem);
    font-weight: 700;
    line-height: 1.35;
}

.hero-text,
.section-heading p,
.floating-note span,
.process-card p,
.service-card p,
.contact-copy p,
.contact-card p,
.testimonial-card p,
.proof-strip span,
.contact-points span,
.stat-card span,
.footer-copy,
.site-footer p {
    color: var(--text-soft);
    line-height: 1.7;
}

.hero-text {
    max-width: 60ch;
    font-size: clamp(0.98rem, 1.1vw, 1.2rem);
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0 0;
}

.hero-actions .gold-button,
.hero-actions .ghost-button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.95rem;
}

.hero-stats {
    display: none;
}

.stat-card {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-strong);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
}

.hero-visual {
    position: relative;
    min-height: 100%;
    display: flex;
    justify-content: flex-end;
}

.hero-image-stack {
    position: relative;
    width: min(100%, 400px);
    min-height: auto;
}

.hero-logo-frame {
    align-self: start;
}

.hero-main-frame.hero-logo-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

.hero-main-frame {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-main-frame {
    width: 100%;
    margin-left: auto;
    background: rgba(15, 12, 8, 0.78);
    backdrop-filter: blur(10px);
}

.hero-main-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1.06;
}

.floating-note {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: min(320px, 84%);
    padding: 22px;
    border-radius: 24px;
    background: rgba(19, 14, 10, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
}

.floating-note strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.12rem;
}

.hero-carousel-bar {
    display: none;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(13, 10, 7, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg);
}

.hero-slide-copy-shell {
    display: grid;
    gap: 10px;
    max-width: 62ch;
}

.hero-slide-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.98;
}

.hero-slide-text {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.hero-slide-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-slide-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-strong);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 700;
}

.hero-carousel-controls {
    display: grid;
    justify-items: end;
    gap: 14px;
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 14px;
}

.proof-strip article,
.process-card,
.service-card,
.contact-card,
.testimonial-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
        rgba(26, 21, 16, 0.9);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.proof-strip strong,
.section-heading h2,
.process-card h3,
.service-card h3,
.contact-card h3,
.testimonial-card strong,
.contact-points strong {
    color: var(--panel-cream);
}

.section-heading {
    max-width: 60rem;
    margin-bottom: 22px;
}

.catalog-section .section-heading {
    max-width: 100%;
}

.section-heading h2 {
    font-size: clamp(2.1rem, 4.5vw, 3.6rem);
    margin-bottom: 12px;
}

.featured-grid,
.catalog-grid,
.process-grid,
.testimonial-grid {
    display: grid;
    gap: 18px;
}

.featured-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
    grid-auto-rows: 1fr;
}

.catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(206px, 100%), 1fr));
    grid-auto-rows: 1fr;
}

.process-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
}

.testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
}

.filter-bar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    padding-bottom: 4px;
}

.filter-bar::-webkit-scrollbar {
    height: 0;
}

.filter-bar-shell {
    margin-bottom: 18px;
}

.filter-scroll-indicator {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}

.filter-scroll-indicator.is-visible {
    opacity: 1;
    visibility: visible;
}

.filter-scroll-indicator span {
    display: block;
    width: 34%;
    min-width: 44px;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold), var(--gold-strong));
    box-shadow: 0 0 14px rgba(215, 179, 106, 0.45);
    transform: translateX(0);
    transition: transform 0.15s ease-out, width 0.2s ease-out;
    will-change: transform, width;
}

.filter-chip {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 144px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
    border: 1px solid var(--line);
    font-weight: 700;
    text-align: center;
    scroll-snap-align: start;
}

.filter-chip.is-active {
    background: linear-gradient(135deg, rgba(215, 179, 106, 0.24), rgba(240, 203, 129, 0.14));
    color: var(--panel-cream);
    border-color: rgba(240, 203, 129, 0.42);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
        rgba(26, 21, 16, 0.92);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.product-media {
    position: relative;
    overflow: hidden;
    border: 0;
    padding: 0;
    background: #110d09;
    cursor: zoom-in;
}

.product-media img {
    width: 100%;
    aspect-ratio: 0.8;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(16, 12, 8, 0.78);
    color: var(--gold-strong);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.product-body {
    display: grid;
    grid-template-rows: auto minmax(2.2em, auto) auto;
    align-content: start;
    gap: 9px;
    padding: 14px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--text-soft);
    font-size: 0.8rem;
}

.product-body h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.38rem;
    line-height: 1.06;
    min-height: 2.2em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-body p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.product-price {
    display: grid;
    gap: 2px;
}

.product-price span {
    color: var(--text-soft);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-price strong {
    color: var(--gold-strong);
    font-size: 1.1rem;
}

.product-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 114px;
    min-height: 40px;
    padding: 0 11px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.86rem;
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(215, 179, 106, 0.12);
    border: 1px solid rgba(240, 203, 129, 0.2);
    color: var(--gold-strong);
    font-weight: 800;
}

.service-card {
    background:
        radial-gradient(circle at top right, rgba(240, 203, 129, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(40, 29, 18, 0.96), rgba(18, 13, 9, 0.98));
}

.service-card a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--gold-strong);
    font-weight: 800;
}

.contact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
    gap: 20px;
    align-items: start;
}

.contact-points {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-points article {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.contact-card-head {
    margin-bottom: 18px;
}

.contact-form,
.order-form {
    display: grid;
    gap: 14px;
}

.order-tracking-panel {
    padding: 24px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(240, 203, 129, 0.1), transparent 44%),
        linear-gradient(180deg, rgba(29, 22, 16, 0.96), rgba(17, 13, 9, 0.98));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.order-tracking-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.order-tracking-head strong {
    color: var(--panel-cream);
    font-size: 1.04rem;
}

.order-tracking-feedback {
    min-height: 24px;
    margin: 0 0 8px;
    color: var(--gold-strong);
    font-size: 0.92rem;
    font-weight: 700;
}

.order-tracking-feedback.is-error {
    color: #ffb7b7;
}

.order-tracking-list {
    display: grid;
    gap: 12px;
}

.order-tracking-empty {
    padding: 20px;
    border-radius: 18px;
    border: 1px dashed rgba(240, 203, 129, 0.32);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
}

.tracking-order-item {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.tracking-order-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.tracking-order-code {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tracking-order-status {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.tracking-order-status.is-pending {
    background: rgba(240, 203, 129, 0.16);
    color: #ffdca4;
}

.tracking-order-status.is-ready {
    background: rgba(102, 166, 130, 0.18);
    color: #cbefd8;
}

.tracking-order-status.is-delivered {
    background: rgba(106, 185, 143, 0.2);
    color: #d7f7e4;
}

.tracking-order-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--text-soft);
    font-size: 0.86rem;
}

.tracking-order-lines {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.86rem;
    line-height: 1.5;
}

.contact-form label,
.order-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    color: var(--panel-cream);
}

.contact-form input,
.contact-form textarea,
.order-form input,
.order-form textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.order-form input::placeholder,
.order-form textarea::placeholder {
    color: rgba(247, 240, 228, 0.48);
}

.contact-form input:focus,
.contact-form textarea:focus,
.order-form input:focus,
.order-form textarea:focus {
    outline: 2px solid rgba(240, 203, 129, 0.26);
    border-color: rgba(240, 203, 129, 0.42);
}

.form-message {
    min-height: 24px;
    margin: 0;
    color: var(--gold-strong);
    font-weight: 700;
}

.site-footer {
    width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    margin: 0 auto 40px;
    padding: 24px clamp(20px, 4vw, 36px);
    border-radius: var(--radius-xl);
    background: rgba(20, 16, 12, 0.9);
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1.3fr 1fr auto;
    gap: 20px;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-soft);
}

.cart-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    padding: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-strong));
    color: #24190b;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    font-weight: 800;
}

.instagram-fab {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.instagram-fab img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    display: block;
}

.instagram-fab:hover,
.instagram-fab:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.32);
}

.cart-fab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1;
}

.cart-fab strong {
    position: absolute;
    top: -6px;
    right: -6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #2a1d0d;
    color: var(--gold-strong);
    border: 2px solid rgba(240, 203, 129, 0.4);
    font-size: 0.82rem;
}

.cart-toast {
    position: fixed;
    left: 50%;
    bottom: 98px;
    z-index: 24;
    transform: translate(-50%, 14px);
    opacity: 0;
    pointer-events: none;
    padding: 14px 18px;
    max-width: min(calc(100vw - 24px), 360px);
    border-radius: 999px;
    background: rgba(15, 11, 8, 0.92);
    color: var(--panel-cream);
    text-align: center;
    font-weight: 700;
    line-height: 1.25;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transition: opacity 0.24s ease, transform 0.24s ease, left 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), top 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.cart-toast.is-flying {
    opacity: 0.92;
}

.cart-toast.is-near-trigger {
    transition: opacity 0.22s ease, transform 0.24s ease, left 0.24s ease, top 0.24s ease;
}

body.cart-open .cart-fab {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.85);
}

body.cart-open .instagram-fab {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.85);
}

.cart-fab.is-bumping {
    animation: cart-bump 0.45s ease;
}

.cart-scrim,
.image-modal {
    position: fixed;
    inset: 0;
    z-index: 22;
    background: rgba(9, 7, 5, 0.76);
    backdrop-filter: blur(12px);
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 23;
    width: min(480px, 100%);
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    max-width: 100vw;
}

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

.cart-panel-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(24, 18, 13, 0.98), rgba(13, 10, 7, 0.98));
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 48px rgba(0, 0, 0, 0.24);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
}

.cart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.cart-header h3 {
    font-size: 2.2rem;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.order-form {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.order-form .gold-button.full-width {
    position: sticky;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 2;
    margin-top: auto;
}

.order-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.field-span {
    grid-column: 1 / -1;
}

.cart-items {
    display: grid;
    gap: 12px;
    grid-auto-rows: max-content;
    align-items: start;
    align-content: start;
    flex: 1;
    min-height: 0;
    margin: 8px 0;
    padding-right: 4px;
    overflow: auto;
}

.cart-empty {
    padding: 20px;
    border-radius: 20px;
    border: 1px dashed rgba(255, 244, 226, 0.18);
    color: var(--text-soft);
    text-align: center;
}

.cart-item {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
}

.cart-item-head,
.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cart-item-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
    flex: 1;
}

.cart-item-head strong,
.cart-item-price {
    color: var(--panel-cream);
}

.cart-item-name {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.12;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-meta,
.cart-item-head span {
    color: var(--text-soft);
    font-size: 0.88rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-pricing {
    display: grid;
    gap: 4px;
    text-align: right;
    justify-items: end;
}

.cart-item-unit-price {
    color: var(--text-soft);
    font-size: 0.76rem;
}

.cart-item-price {
    font-size: 1.02rem;
    font-weight: 800;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.qty-control button,
.cart-remove {
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--line);
    cursor: pointer;
}

.cart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(215, 179, 106, 0.12);
    border: 1px solid rgba(240, 203, 129, 0.2);
}

.cart-summary p {
    margin: 0;
    color: var(--text-soft);
}

.cart-summary strong {
    color: var(--gold-strong);
    font-size: 1.32rem;
}

.order-followup-prompt {
    position: fixed;
    top: calc(var(--header-height) + 14px);
    left: 50%;
    transform: translateX(-50%);
    width: min(760px, calc(100% - 24px));
    z-index: 31;
    pointer-events: none;
}

.order-followup-prompt.is-visible {
    pointer-events: auto;
}

.order-followup-card {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 18px 64px 18px 18px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(240, 203, 129, 0.24), transparent 52%),
        linear-gradient(180deg, rgba(31, 23, 16, 0.98), rgba(17, 13, 9, 0.98));
    border: 1px solid rgba(240, 203, 129, 0.34);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.34);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.order-followup-prompt.is-visible .order-followup-card {
    opacity: 1;
    transform: translateY(0);
}

.order-followup-card strong {
    color: var(--panel-cream);
    font-size: clamp(1.06rem, 2vw, 1.22rem);
}

.order-followup-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.5;
}

.order-followup-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.order-followup-actions .gold-button,
.order-followup-actions .ghost-button {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.9rem;
}

.order-followup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.order-followup-close:hover,
.order-followup-close:focus-visible {
    background: rgba(240, 203, 129, 0.16);
    border-color: rgba(240, 203, 129, 0.42);
}

.order-success {
    position: fixed;
    inset: 0;
    z-index: 32;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 4vw, 22px);
    background: rgba(9, 7, 5, 0.62);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.order-success-card {
    width: min(100%, 520px);
    margin-inline: auto;
    padding: clamp(22px, 3.6vw, 34px);
    border-radius: 28px;
    text-align: center;
    background:
        radial-gradient(circle at top center, rgba(240, 203, 129, 0.3), transparent 56%),
        linear-gradient(180deg, rgba(28, 20, 14, 0.98), rgba(18, 13, 9, 0.98));
    border: 1px solid rgba(240, 203, 129, 0.34);
    box-shadow: 0 28px 52px rgba(0, 0, 0, 0.42);
    transform: translateY(18px) scale(0.95);
    opacity: 0;
    transition: transform 0.26s ease, opacity 0.26s ease;
}

.order-success.show .order-success-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.order-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-strong));
    color: #281c0f;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(215, 179, 106, 0.36);
}

.order-success-card strong {
    display: block;
    margin-bottom: 8px;
    color: #fff8ef;
    font-size: clamp(1.3rem, 2.8vw, 1.85rem);
    letter-spacing: 0.01em;
}

.order-success-card p {
    margin: 0;
    color: rgba(255, 247, 234, 0.86);
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.55;
}

.image-modal {
    display: grid;
    place-items: center;
    padding: 24px;
}

.image-modal-content {
    width: min(92vw, 760px);
    max-height: 88vh;
    object-fit: contain;
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: fixed;
    top: 24px;
    right: 24px;
}

.full-width {
    width: 100%;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 921px) {
    .hero-section {
        align-content: start;
    }

    .hero-content {
        align-items: start;
        justify-items: start;
    }

    .hero-copy {
        margin-inline: 0;
        text-align: left;
    }

    .hero-copy h1,
    .hero-motto,
    .hero-text {
        margin-inline: 0;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-visual {
        justify-content: flex-end;
        align-self: start;
    }
}

@keyframes cart-bump {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 1180px) {
    .site-header-inner {
        width: min(calc(100% - 24px), 100%);
        gap: 12px;
    }

    .header-clock {
        min-width: 122px;
        padding: 8px 10px;
    }

    .site-nav {
        max-width: none;
        gap: 6px;
        padding: 6px;
    }

    .site-nav a {
        padding: 10px 12px;
        font-size: 0.96rem;
    }

    .header-cta {
        min-height: 46px;
        padding: 0 16px;
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
        align-items: start;
    }

    .hero-section {
        min-height: auto;
        padding: 16px 0 12px;
        gap: 12px;
    }

    .hero-copy {
        max-width: none;
        padding: 0;
    }

    .hero-copy h1 {
        font-size: clamp(1.9rem, 5vw, 3rem);
        max-width: 11ch;
    }

    .hero-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-visual {
        justify-content: flex-end;
    }

    .hero-image-stack {
        width: min(100%, 300px);
    }

    .featured-grid,
    .catalog-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(188px, 100%), 1fr));
    }

    .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    }

    .site-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .header-cta {
        display: none;
    }
}

@media (max-width: 920px) {
    .site-header-inner {
        width: min(calc(100% - 28px), 100%);
        min-height: auto;
        padding: 10px 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        grid-template-areas:
            "brand clock actions"
            "nav nav nav";
        gap: 10px;
    }

    .brand-mark {
        grid-area: brand;
    }

    .header-actions {
        grid-area: actions;
        justify-self: end;
    }

    .header-clock {
        grid-area: clock;
        justify-self: end;
        align-items: center;
        flex-direction: row;
        gap: 6px;
        min-width: 0;
        padding: 8px 10px;
    }

    .header-clock span {
        display: none;
    }

    .header-clock strong {
        font-size: 0.84rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        grid-area: nav;
        display: none;
        width: 100%;
        justify-self: stretch;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin-top: 2px;
        border-radius: 18px;
        padding: 10px;
        background: rgba(15, 12, 8, 0.94);
        border: 1px solid var(--line);
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        min-height: 48px;
        padding: 12px;
        border-radius: 10px;
        color: var(--text-soft);
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
        background: rgba(215, 179, 106, 0.16);
        color: var(--text);
        transform: none;
    }

    .header-cta {
        display: none;
    }

    .hero-section {
        min-height: calc(100svh - var(--header-height) - 10px);
        padding: clamp(12px, 2.6vw, 18px) 0 clamp(14px, 3vw, 22px);
        align-content: start;
    }

    .hero-section-overlay {
        background:
            radial-gradient(circle at 50% 18%, rgba(255, 232, 192, 0.16), transparent 46%),
            linear-gradient(180deg, rgba(10, 7, 5, 0.58) 0%, rgba(10, 7, 5, 0.3) 44%, rgba(10, 7, 5, 0.62) 100%),
            linear-gradient(90deg, rgba(14, 10, 7, 0.3), rgba(14, 10, 7, 0.3));
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: clamp(10px, 2.2vw, 16px);
        justify-items: start;
        text-align: left;
        align-content: start;
        padding-top: clamp(10px, 2.8vh, 22px);
        width: min(100% - 20px, 100%);
    }

    .hero-copy {
        width: min(100%, 56ch);
        max-width: min(96vw, 56ch);
        margin-inline: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
        border: 0;
        backdrop-filter: none;
    }

    .hero-copy .eyebrow {
        margin-bottom: 8px;
        font-size: clamp(0.66rem, 1.9vw, 0.78rem);
        letter-spacing: 0.14em;
    }

    .hero-copy h1 {
        max-width: 12.8ch;
        margin-inline: 0;
        font-size: clamp(1.86rem, 6.9vw, 2.8rem);
        line-height: 1.06;
        margin-bottom: 10px;
        text-wrap: pretty;
    }

    .hero-motto {
        margin-inline: 0;
        max-width: 30ch;
        font-size: clamp(0.94rem, 2.45vw, 1.1rem);
        line-height: 1.38;
    }

    .hero-actions {
        width: min(100%, 540px);
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        justify-content: start;
    }

    .hero-text {
        display: block;
        max-width: 42ch;
        font-size: clamp(0.94rem, 2.7vw, 1.04rem);
        line-height: 1.58;
    }

    .hero-visual {
        display: none;
    }

    .proof-strip,
    .testimonial-grid,
    .hero-stats {
        grid-template-columns: 1fr;
    }

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

    .product-media img {
        aspect-ratio: 1;
        max-height: 360px;
    }

    .hero-carousel-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-carousel-controls {
        justify-items: start;
    }
}

@media (max-width: 640px) {
    .storefront,
    .site-footer {
        width: min(100% - 28px, 100%);
    }

    .storefront {
        padding-top: 0;
        padding-bottom: 78px;
    }

    .proof-strip article,
    .process-card,
    .service-card,
    .contact-card,
    .testimonial-card,
    .site-footer {
        border-radius: 24px;
    }

    .hero-section {
        min-height: calc(100svh - var(--header-height) - 8px);
        padding: 10px 0 14px;
        align-content: start;
    }

    .hero-content,
    .hero-carousel-bar {
        width: min(100% - 24px, 100%);
    }

    .hero-content {
        justify-items: start;
        text-align: left;
    }

    .hero-copy h1 {
        font-size: clamp(1.68rem, 9.1vw, 2.16rem);
        max-width: 10.2ch;
        margin-inline: 0;
    }

    .hero-copy {
        width: min(100%, 42ch);
        max-width: min(94vw, 42ch);
        margin-inline: 0;
        padding: 0;
    }

    .hero-copy .eyebrow {
        font-size: clamp(0.62rem, 2.6vw, 0.72rem);
    }

    .hero-motto {
        max-width: 26ch;
        margin-inline: 0;
        font-size: clamp(0.92rem, 3.35vw, 1.02rem);
    }

    .hero-actions {
        width: min(100%, 420px);
        justify-content: start;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 12px;
    }

    .hero-actions .gold-button,
    .hero-actions .ghost-button {
        width: 100%;
        min-height: 44px;
        min-width: 0;
        padding: 0 14px;
        font-size: clamp(0.9rem, 3.6vw, 0.98rem);
    }

    .nav-carousel-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .section-heading h2 {
        font-size: 2.25rem;
    }

    .order-tracking-panel {
        padding: 16px;
        border-radius: 18px;
    }

    .order-tracking-head {
        align-items: center;
        flex-direction: row;
        gap: 8px;
    }

    .tracking-order-item {
        padding: 12px;
        border-radius: 14px;
        gap: 8px;
    }

    .tracking-order-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-followup-prompt {
        top: calc(var(--header-height) + 8px);
        width: min(100% - 16px, 100%);
    }

    .order-followup-card {
        padding: 14px 48px 14px 14px;
        border-radius: 16px;
        gap: 8px;
    }

    .order-followup-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .order-followup-actions .gold-button,
    .order-followup-actions .ghost-button {
        width: 100%;
    }

    .order-followup-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
    }

    .filter-bar {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        padding-bottom: 4px;
        margin-bottom: 8px;
    }

    .filter-bar::-webkit-scrollbar {
        height: 0;
    }

    .filter-bar::-webkit-scrollbar-thumb {
        background: transparent;
    }

    .filter-chip {
        flex: 0 0 auto;
        width: auto;
        min-width: 132px;
        min-height: 44px;
        padding: 0 18px;
        scroll-snap-align: start;
    }

    .filter-bar-shell {
        margin-bottom: 14px;
    }

    .product-media img {
        aspect-ratio: 1;
        max-height: 300px;
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .product-action {
        width: 100%;
    }

    .cart-panel-inner {
        padding: 14px;
    }

    .cart-header {
        gap: 10px;
        margin-bottom: 12px;
    }

    .cart-header h3 {
        font-size: 1.55rem;
        line-height: 1.02;
    }

    .cart-panel .eyebrow {
        margin-bottom: 6px;
        font-size: 0.72rem;
    }

    .cart-header .icon-button {
        width: 40px;
        height: 40px;
    }

    .order-form {
        gap: 10px;
    }

    .order-fields {
        gap: 9px;
    }

    .order-form label {
        gap: 6px;
        font-size: 0.95rem;
    }

    .order-form input,
    .order-form textarea {
        padding: 11px 12px;
        border-radius: 13px;
        font-size: 0.98rem;
    }

    .order-form textarea {
        min-height: 84px;
    }

    .cart-items {
        gap: 8px;
        margin: 2px 0;
    }

    .cart-item {
        gap: 8px;
        padding: 10px;
        border-radius: 14px;
    }

    .cart-item-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 8px;
    }

    .cart-item-name {
        font-size: 0.98rem;
        line-height: 1.08;
    }

    .cart-item-meta {
        font-size: 0.78rem;
        line-height: 1.25;
    }

    .cart-item-pricing {
        gap: 1px;
        text-align: right;
        justify-items: end;
    }

    .cart-item-unit-price {
        font-size: 0.72rem;
    }

    .cart-item-price {
        font-size: 0.9rem;
    }

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

    .qty-control {
        gap: 6px;
        font-size: 0.92rem;
    }

    .qty-control button,
    .cart-remove {
        min-height: 32px;
        padding: 0 10px;
        font-size: 0.86rem;
    }

    .cart-summary {
        margin-bottom: 8px;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .cart-summary strong {
        font-size: 1.15rem;
    }

    .order-form .gold-button.full-width {
        min-height: 50px;
        font-size: 1rem;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }

    .hero-main-frame {
        width: 100%;
    }

    .hero-image-stack {
        width: min(100%, 360px);
    }

    .floating-note {
        left: 12px;
        right: 12px;
        width: auto;
        bottom: 12px;
        padding: 18px;
    }

    .hero-carousel-bar {
        padding: 18px;
    }

    .hero-slide-title {
        font-size: 2.15rem;
    }

    .nav-carousel-dots {
        margin-top: 0;
    }

    .order-fields {
        grid-template-columns: 1fr;
    }

    .cart-fab {
        right: 14px;
        left: auto;
        bottom: 14px;
        width: 58px;
        height: 58px;
    }

    .instagram-fab {
        left: 14px;
        bottom: 14px;
        width: 58px;
        height: 58px;
    }

    .cart-fab strong {
        top: -4px;
        right: -4px;
        min-width: 26px;
        height: 26px;
        padding: 0 8px;
    }

    .cart-summary {
        padding: 12px 14px;
    }

    .tracking-order-meta,
    .tracking-order-lines {
        font-size: 0.8rem;
    }
}

@media (max-width: 1180px) {
    .hero-bg-slide img {
        object-position: center 34%;
        transform: scale(1.035);
    }
}

@media (max-width: 920px) {
    .hero-bg-slide img {
        object-position: center 30%;
        transform: scale(1.02);
    }
}

@media (max-width: 640px) {
    .hero-bg-slide img {
        object-position: center 24%;
        transform: scale(1.01);
    }
}

@supports (height: 100dvh) {
    .cart-panel {
        height: 100dvh;
    }
}

@media (max-width: 420px) {
    .brand-mark {
        gap: 8px;
        padding: 7px 10px 7px 7px;
    }

    .brand-mark img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
    }

    .brand-copy span {
        font-size: 0.5rem;
        letter-spacing: 0.21em;
    }

    .brand-copy strong {
        font-size: 0.86rem;
        letter-spacing: 0.08em;
    }

    .hero-section {
        padding-top: 8px;
    }

    .hero-copy {
        padding: 0;
        border-radius: 0;
    }

    .hero-copy h1 {
        font-size: clamp(1.56rem, 8.8vw, 1.92rem);
        max-width: 10.2ch;
        margin-bottom: 12px;
    }

    .hero-actions {
        width: min(100%, 290px);
    }

    .order-followup-card strong {
        font-size: 1rem;
    }

    .order-followup-card p {
        font-size: 0.86rem;
    }

    .cart-item {
        padding: 9px;
    }

    .cart-item-meta {
        font-size: 0.74rem;
    }

    .cart-item-unit-price {
        font-size: 0.68rem;
    }

    .cart-item-price {
        font-size: 0.86rem;
    }
}

@supports (height: 100dvh) {
    body {
        min-height: 100dvh;
    }

    .hero-section {
        min-height: clamp(520px, calc(100dvh - var(--header-height) - 20px), 860px);
    }

    @media (max-width: 920px) {
        .hero-section {
            min-height: calc(100dvh - var(--header-height) - 10px);
        }
    }

    @media (max-width: 640px) {
        .hero-section {
            min-height: calc(100dvh - var(--header-height) - 8px);
        }
    }
}

/* Hero full-screen centered across devices */
.hero-section {
    min-height: calc(100svh - var(--header-height));
    padding: clamp(12px, 2.2vw, 24px) 0;
    align-content: center;
}

.hero-content {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    align-content: center;
    text-align: center;
}

.hero-copy {
    max-width: min(92vw, 64ch);
    margin-inline: auto;
    text-align: center;
}

.hero-copy h1,
.hero-motto,
.hero-text {
    margin-inline: auto;
}

.hero-actions {
    justify-content: center;
    margin-inline: auto;
    width: min(100%, 560px);
}

.hero-text {
    max-width: 56ch;
}

.hero-visual {
    display: none;
}

@supports (height: 100dvh) {
    .hero-section {
        min-height: calc(100dvh - var(--header-height));
    }
}

@media (max-width: 920px) {
    .hero-section {
        min-height: calc(100svh - var(--header-height));
        padding: clamp(10px, 2.4vw, 18px) 0;
    }

    .hero-content {
        width: min(100% - 20px, 100%);
    }

    .hero-copy {
        max-width: min(96vw, 50ch);
    }

    .hero-actions {
        width: min(100%, 420px);
    }
}

@media (max-width: 640px) {
    .header-clock span {
        display: none;
    }

    .header-clock strong {
        font-size: 0.86rem;
    }

    .hero-content,
    .hero-carousel-bar {
        width: min(100% - 24px, 100%);
    }

    .hero-copy {
        max-width: min(94vw, 42ch);
    }

    .hero-actions {
        width: min(100%, 360px);
    }
}

@media (min-width: 1025px) {
    .hero-content {
        grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
        align-items: start;
        justify-items: stretch;
        text-align: left;
    }

    .hero-copy {
        order: 1;
        max-width: 56ch;
        margin-inline: 0;
        text-align: left;
    }

    .hero-copy h1,
    .hero-motto,
    .hero-text {
        margin-inline: 0;
    }

    .hero-actions {
        justify-content: flex-start;
        margin-inline: 0;
        width: auto;
    }

    .hero-visual {
        order: 2;
        display: flex;
        justify-content: flex-end;
        align-self: start;
    }

    .hero-image-stack {
        width: min(100%, 360px);
    }

    .hero-main-frame {
        margin-left: auto;
        margin-right: 0;
    }
}
