:root {
    --bg: #0d0f12;
    --surface: #16191e;
    --surface-light: #1c2026;
    --surface-raised: #21262d;
    --text: #f3f4f6;
    --muted: #969da8;
    --muted-dark: #6e7580;
    --line: rgba(255, 255, 255, .1);
    --gold: #d4af37;
    --gold-light: #f0d47d;
    --blue: #3b82f6;
    --content: 1280px;
    color-scheme: dark;
    font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { color: inherit; font: inherit; }
::selection { background: var(--gold); color: #111; }

.announcement {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 7px 20px;
    background: #090a0c;
    border-bottom: 1px solid rgba(212, 175, 55, .16);
    color: #a9afb8;
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.announcement-divider { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(22, 25, 30, .9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.nav-shell {
    width: min(var(--content), calc(100% - 48px));
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    margin: 0 auto;
}
.store-logo {
    display: inline-flex;
    align-items: center;
    gap: .32em;
    color: var(--text);
    font-family: Montserrat, Inter, sans-serif;
    font-size: 17px;
    font-weight: 760;
    letter-spacing: .19em;
    text-decoration: none;
    white-space: nowrap;
}
.logo-accent { color: var(--gold-light); font-weight: 420; }
.desktop-nav { display: flex; align-items: stretch; align-self: stretch; gap: 30px; }
.desktop-nav a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .04em;
    text-decoration: none;
    transition: color .2s ease;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--text); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    cursor: pointer;
}
.menu-toggle span { width: 18px; height: 1px; display: block; background: var(--text); }
.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 140;
    background: rgba(0, 0, 0, .66);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    width: min(410px, 88vw);
    padding: 28px;
    background: rgba(22, 25, 30, .98);
    border-left: 1px solid var(--line);
    box-shadow: -30px 0 80px rgba(0, 0, 0, .42);
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .34s cubic-bezier(.22, 1, .36, 1), visibility .34s;
}
.menu-open .drawer-overlay { opacity: 1; pointer-events: auto; }
.menu-open .mobile-drawer { transform: translateX(0); visibility: visible; pointer-events: auto; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.drawer-label, .kicker { color: var(--gold-light); font-size: 10px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.drawer-close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 27px; line-height: 1; cursor: pointer; }
.mobile-drawer nav { display: grid; margin-top: 22px; }
.mobile-drawer nav a { display: flex; align-items: center; justify-content: space-between; padding: 19px 2px; border-bottom: 1px solid var(--line); color: #c6cbd2; font-size: 19px; text-decoration: none; }
.mobile-drawer nav a.active { color: var(--gold-light); }
.mobile-drawer nav small { color: var(--muted-dark); font-size: 12px; }
.drawer-footnote { position: absolute; right: 28px; bottom: 24px; left: 28px; color: var(--muted-dark); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.catalog-hero {
    position: relative;
    width: min(var(--content), calc(100% - 48px));
    min-height: 510px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 70px;
    margin: 0 auto;
    padding: 74px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.hero-glow {
    position: absolute;
    top: 8%;
    right: 10%;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(212, 175, 55, .09);
    border-radius: 50%;
    box-shadow:
        0 0 0 72px rgba(212, 175, 55, .022),
        0 0 0 144px rgba(212, 175, 55, .012),
        inset 0 0 100px rgba(212, 175, 55, .025);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 790px; }
.kicker { margin: 0 0 22px; }
.catalog-hero h1 {
    max-width: 830px;
    margin: 0;
    font-family: Montserrat, Inter, sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 530;
    letter-spacing: -.055em;
    line-height: .97;
}
.catalog-hero h1 span { color: var(--gold-light); font-weight: 350; }
.hero-copy { max-width: 670px; margin: 32px 0 0; color: #aeb4bd; font-size: clamp(16px, 2vw, 20px); line-height: 1.65; }
.hero-link { display: inline-flex; align-items: center; gap: 16px; margin-top: 34px; padding-bottom: 7px; border-bottom: 1px solid rgba(212, 175, 55, .55); color: var(--text); font-size: 12px; font-weight: 750; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.hero-link span { color: var(--gold); font-size: 16px; transition: transform .2s ease; }
.hero-link:hover span { transform: translateY(3px); }
.hero-principles { position: relative; z-index: 1; min-width: 230px; display: grid; border-top: 1px solid var(--line); }
.hero-principles span { display: flex; align-items: center; gap: 17px; padding: 19px 0; border-bottom: 1px solid var(--line); color: #b5bbc4; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.hero-principles strong { color: var(--gold); font-size: 10px; }

.catalog-section { width: min(var(--content), calc(100% - 48px)); margin: 0 auto; padding: 90px 0 120px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.section-heading h2, .story-heading h2 {
    margin: 0;
    font-family: Montserrat, Inter, sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 480;
    letter-spacing: -.045em;
    line-height: 1.08;
}
.section-heading > p { margin: 0; color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.category-filters { display: flex; gap: 9px; margin: 34px 0 38px; padding-bottom: 4px; overflow-x: auto; scrollbar-width: none; }
.seo-intro { max-width: 880px; margin: 0 0 38px; padding-left: 20px; border-left: 1px solid rgba(212, 175, 55, .48); color: #afb5be; font-size: 14px; line-height: 1.75; }
.seo-intro > *:first-child { margin-top: 0; }
.seo-intro > *:last-child { margin-bottom: 0; }
.seo-intro h2, .seo-intro h3 { color: var(--text); font-size: 20px; font-weight: 520; }
.seo-intro li::marker { color: var(--gold); }
.seo-content-bottom { max-width: 940px; margin: 76px auto 0; padding: 64px 0 10px; border-top: 1px solid var(--line); color: #9ea5af; font-size: 15px; line-height: 1.82; }
.seo-content-bottom > *:first-child { margin-top: 0; }
.seo-content-bottom > *:last-child { margin-bottom: 0; }
.seo-content-bottom h2, .seo-content-bottom h3 { margin: 34px 0 14px; color: var(--text); font-family: Montserrat, Inter, sans-serif; font-size: clamp(23px, 3vw, 31px); font-weight: 430; letter-spacing: -.025em; line-height: 1.22; }
.seo-content-bottom p { margin: 0 0 18px; }
.seo-content-bottom ul, .seo-content-bottom ol { display: grid; gap: 9px; margin: 18px 0 26px; padding-left: 21px; }
.seo-content-bottom li::marker { color: var(--gold); }
.category-filters::-webkit-scrollbar { display: none; }
.category-filters a { flex: 0 0 auto; padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 11px; font-weight: 650; letter-spacing: .04em; text-decoration: none; transition: border-color .2s ease, color .2s ease, background .2s ease; }
.category-filters a:hover { border-color: rgba(212, 175, 55, .5); color: var(--text); }
.category-filters a.active { border-color: rgba(212, 175, 55, .65); background: rgba(212, 175, 55, .08); color: var(--gold-light); }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 18px; }
.product-card { min-width: 0; display: block; overflow: hidden; border: 1px solid rgba(255, 255, 255, .055); background: var(--surface); text-decoration: none; transition: border-color .25s ease, transform .3s ease; }
.product-media { position: relative; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #fff; border: 1px solid rgba(255, 255, 255, .045); }
.product-image { position: absolute; inset: 0; width: 100%; height: 100%; display: block; padding: 0; background: #fff; object-fit: contain; mix-blend-mode: normal; transition: opacity .4s ease, transform .55s cubic-bezier(.22, 1, .36, 1); }
.secondary-image { opacity: 0; }
.card-arrow { position: absolute; top: 14px; right: 14px; z-index: 2; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .14); border-radius: 50%; background: rgba(13, 15, 18, .62); color: var(--gold-light); font-size: 14px; opacity: 0; transform: translateY(5px); transition: opacity .25s ease, transform .25s ease; backdrop-filter: blur(8px); }
.product-card-body { padding: 17px 16px 18px; }
.brand-tag { margin: 0 0 9px; color: var(--gold); font-size: 9px; font-weight: 780; letter-spacing: .19em; text-transform: uppercase; }
.product-card h3 { min-height: 2.8em; display: -webkit-box; margin: 0; overflow: hidden; color: #e7e9ec; font-size: clamp(14px, 1.7vw, 17px); font-weight: 560; letter-spacing: -.015em; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 15px; }
.card-price { color: var(--text); font-size: 14px; font-weight: 720; font-variant-numeric: tabular-nums; }
.card-category { overflow: hidden; color: var(--muted-dark); font-size: 9px; letter-spacing: .09em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.watch-placeholder { width: 100%; height: 100%; display: grid; place-content: center; gap: 10px; color: var(--gold); text-align: center; }
.watch-placeholder span { width: 88px; height: 88px; display: grid; place-items: center; border: 1px solid rgba(212, 175, 55, .4); border-radius: 50%; font-size: 24px; font-weight: 300; letter-spacing: .16em; }
.watch-placeholder small { color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }
.catalog-empty { display: grid; justify-items: center; padding: 80px 20px; border: 1px solid var(--line); background: var(--surface); text-align: center; }
.catalog-empty > span { width: 78px; height: 78px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); }
.catalog-empty h2 { margin: 24px 0 8px; font-weight: 500; }
.catalog-empty p { color: var(--muted); }
.catalog-empty a, .outline-link { margin-top: 20px; padding-bottom: 7px; border-bottom: 1px solid var(--gold); color: var(--gold-light); text-decoration: none; }

.product-page { width: min(var(--content), calc(100% - 48px)); margin: 0 auto; padding: 38px 0 120px; }
.breadcrumbs { min-width: 0; margin-bottom: 34px; color: var(--muted-dark); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.breadcrumbs ol { display: flex; align-items: center; gap: 10px; min-width: 0; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li { display: flex; align-items: center; min-width: 0; margin: 0; padding: 0; }
.breadcrumbs li + li::before { margin-right: 10px; color: var(--muted-dark); content: "/"; }
.breadcrumbs a { color: #aeb4bd; text-decoration: none; }
.breadcrumbs li:last-child, .breadcrumbs li:last-child > span { overflow: hidden; text-overflow: ellipsis; }
.product-detail { display: grid; grid-template-columns: minmax(0, 620px) minmax(390px, 1fr); justify-content: space-between; gap: clamp(48px, 7vw, 104px); align-items: start; }
.product-gallery { position: sticky; top: 124px; width: 100%; max-width: 620px; min-width: 0; }
.swiper-main, .gallery-empty { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border: 1px solid rgba(212, 175, 55, .2); border-radius: 8px; background: #fff; }
.swiper-main { --swiper-navigation-color: #20242a; --swiper-navigation-size: 18px; width: 100%; }
.swiper-main .swiper-wrapper, .swiper-main .swiper-slide, .gallery-zoom { width: 100%; height: 100%; }
.swiper-main .swiper-slide { display: flex; align-items: center; justify-content: center; overflow: hidden; background: #fff; }
.gallery-zoom { display: flex; align-items: center; justify-content: center; cursor: zoom-in; }
.gallery-zoom img { width: 100%; height: 100%; display: block; background: #fff; object-fit: contain; mix-blend-mode: normal; }
.swiper-main .swiper-button-next, .swiper-main .swiper-button-prev { width: 42px; height: 42px; display: none; margin-top: -21px; border: 1px solid rgba(13, 15, 18, .12); border-radius: 50%; background: rgba(255, 255, 255, .9); box-shadow: 0 8px 24px rgba(13, 15, 18, .12); opacity: 0; transition: opacity .2s ease, transform .2s ease; }
.swiper-main .swiper-button-next { right: 16px; transform: translateX(4px); }
.swiper-main .swiper-button-prev { left: 16px; transform: translateX(-4px); }
.swiper-thumbs { height: 80px; margin-top: 16px; }
.swiper-thumbs .swiper-slide { height: 100%; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 0; border: 2px solid transparent; border-radius: 5px; background: #fff; cursor: pointer; opacity: .6; transition: border-color .2s ease, opacity .2s ease; }
.swiper-thumbs .swiper-slide img { width: 100%; height: 100%; display: block; background: #fff; object-fit: contain; mix-blend-mode: normal; }
.swiper-thumbs .swiper-slide-thumb-active { border-color: var(--gold); opacity: 1; }
.swiper-main .swiper-button-lock { display: none !important; }
.swiper-main .swiper-button-next:focus-visible, .swiper-main .swiper-button-prev:focus-visible { opacity: 1; transform: translateX(0); outline: 2px solid var(--gold); outline-offset: 2px; }
.product-information { padding-top: 18px; }
.product-information h1 { margin: 12px 0 0; font-family: Montserrat, Inter, sans-serif; font-size: clamp(25px, 2.4vw, 32px); font-weight: 350; letter-spacing: -.025em; line-height: 1.2; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 31px 0 0; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-row > strong { color: var(--gold-light); font-size: 27px; font-weight: 570; font-variant-numeric: tabular-nums; }
.shipping-badge { display: inline-flex; align-items: center; gap: 7px; color: #aeb7ae; font-size: 10px; letter-spacing: .03em; }
.shipping-badge span { color: #66bb7a; }
.short-description { margin: 26px 0 0; color: #b4bac3; font-size: 15px; line-height: 1.75; }
.affiliate-block { margin-top: 30px; }
.amazon-cta {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 22px;
    border: 1px solid #e6c252;
    background: linear-gradient(135deg, #f0d36d, #d4af37);
    box-shadow: 0 15px 44px rgba(212, 175, 55, .12);
    color: #121212;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.01em;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.amazon-cta span:last-child { font-size: 18px; }
.amazon-cta:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 20px 55px rgba(212, 175, 55, .2); }
.affiliate-block p { display: flex; justify-content: center; gap: 8px; margin: 11px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
.affiliate-block p span { color: var(--gold); }
.affiliate-unavailable { margin-top: 30px; padding: 17px; border: 1px solid var(--line); color: var(--muted); font-size: 13px; text-align: center; }
.specifications { margin-top: 48px; }
.spec-heading { margin-bottom: 18px; }
.spec-heading .kicker { margin-bottom: 8px; }
.spec-heading h2 { margin: 0; font-size: 20px; font-weight: 520; letter-spacing: -.025em; }
.specifications dl { margin: 0; border-top: 1px solid var(--line); }
.specifications dl div { display: grid; grid-template-columns: 42% 58%; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 12px; line-height: 1.45; }
.specifications dt { color: var(--muted); }
.specifications dd { margin: 0; color: #d8dbe0; text-align: right; }
.specifications dd.not-specified { color: var(--muted-dark); }
.spec-note { margin: 13px 0 0; color: var(--muted-dark); font-size: 9px; line-height: 1.5; }
.product-story { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(48px, 9vw, 130px); margin-top: 120px; padding: 90px 0 0; border-top: 1px solid var(--line); }
.story-heading { position: sticky; top: 130px; align-self: start; }
.rich-description { color: #b5bbc4; font-size: 16px; line-height: 1.78; }
.rich-description > *:first-child { margin-top: 0; }
.rich-description h2, .rich-description h3 { margin: 36px 0 14px; color: var(--text); font-size: 24px; font-weight: 520; letter-spacing: -.025em; }
.rich-description p { margin: 0 0 18px; }
.rich-description ul, .rich-description ol { display: grid; gap: 10px; margin: 18px 0 28px; padding-left: 20px; }
.rich-description li::marker { color: var(--gold); }
.mobile-affiliate-bar { display: none; }

.not-found { width: min(850px, calc(100% - 48px)); min-height: 65vh; display: grid; align-content: center; justify-items: start; margin: 0 auto; padding: 80px 0; }
.not-found h1 { max-width: 800px; margin: 0; font-size: clamp(42px, 7vw, 76px); font-weight: 480; letter-spacing: -.05em; line-height: 1.04; }
.not-found > p:not(.kicker) { color: var(--muted); }

.store-footer { border-top: 1px solid var(--line); background: #0a0c0e; }
.footer-grid { width: min(var(--content), calc(100% - 48px)); display: grid; grid-template-columns: 1.4fr .6fr 1fr; gap: 70px; margin: 0 auto; padding: 70px 0 64px; }
.footer-logo { margin-bottom: 20px; }
.footer-grid p { max-width: 480px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.footer-heading { margin-bottom: 14px !important; color: var(--text) !important; font-size: 10px !important; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:nth-child(2) a { margin: 0 0 9px; color: var(--muted); font-size: 12px; text-decoration: none; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { width: min(var(--content), calc(100% - 48px)); display: flex; justify-content: space-between; gap: 20px; margin: 0 auto; padding: 18px 0 24px; border-top: 1px solid var(--line); color: var(--muted-dark); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

@media (hover: hover) {
    .product-card:hover .primary-image { opacity: 0; transform: scale(1.015); }
    .product-card:hover .secondary-image { opacity: 1; transform: scale(1.015); }
    .product-card:hover .card-arrow { opacity: 1; transform: translateY(0); }
    .product-card:hover h3 { color: #fff; }
    .product-card:hover { border-color: rgba(212, 175, 55, .24); transform: translateY(-3px); }
    .product-media:not(.has-swap) .primary-image { opacity: 1; }
    .swiper-main:hover .swiper-button-next, .swiper-main:hover .swiper-button-prev { opacity: 1; transform: translateX(0); }
}

@media (min-width: 700px) {
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 46px 22px; }
}

@media (min-width: 768px) {
    .swiper-thumbs { height: 96px; }
    .swiper-main .swiper-button-next, .swiper-main .swiper-button-prev { display: flex; }
}

@media (min-width: 768px) and (hover: none) {
    .swiper-main .swiper-button-next, .swiper-main .swiper-button-prev { opacity: .9; transform: translateX(0); }
}

@media (min-width: 1060px) {
    .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 54px 24px; }
}

@media (max-width: 900px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: grid; }
    .catalog-hero { min-height: 560px; grid-template-columns: 1fr; align-content: center; gap: 45px; }
    .hero-principles { min-width: 0; grid-template-columns: repeat(3, 1fr); }
    .hero-principles span { align-items: flex-start; flex-direction: column; }
    .product-detail { grid-template-columns: 1fr; }
    .product-gallery { position: static; justify-self: center; }
    .product-information { padding-top: 4px; }
    .product-story { grid-template-columns: 1fr; margin-top: 90px; }
    .story-heading { position: static; }
    .footer-grid { grid-template-columns: 1.1fr .7fr; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    body.has-mobile-cta { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
    .mobile-affiliate-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 999;
        min-height: 82px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        padding: 11px max(14px, env(safe-area-inset-right)) calc(11px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
        border-top: 1px solid rgba(255, 255, 255, .12);
        background: rgba(22, 25, 30, .9);
        box-shadow: 0 -15px 45px rgba(0, 0, 0, .35);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .mobile-product-summary { min-width: 0; display: grid; gap: 5px; }
    .mobile-product-summary span { overflow: hidden; color: #b8bec7; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
    .mobile-product-summary strong { color: var(--gold-light); font-size: 15px; }
    .mobile-affiliate-bar > a { min-height: 46px; display: flex; align-items: center; padding: 0 15px; border-radius: 4px; background: linear-gradient(135deg, #f0d36d, #d4af37); color: #111; font-size: 11px; font-weight: 820; text-decoration: none; white-space: nowrap; }
}

@media (max-width: 620px) {
    .announcement { gap: 8px; font-size: 8px; letter-spacing: .07em; }
    .announcement span:last-child { display: none; }
    .announcement-divider { display: none; }
    .nav-shell, .catalog-hero, .catalog-section, .product-page, .footer-grid, .footer-bottom { width: min(100% - 28px, var(--content)); }
    .nav-shell { height: 68px; }
    .store-logo { font-size: 14px; }
    .catalog-hero { min-height: 510px; padding: 58px 0; }
    .catalog-hero h1 { font-size: clamp(46px, 14vw, 70px); }
    .hero-copy { font-size: 15px; line-height: 1.65; }
    .hero-glow { right: -35%; width: 340px; height: 340px; }
    .hero-principles { grid-template-columns: 1fr; }
    .hero-principles span { flex-direction: row; padding: 13px 0; }
    .catalog-section { padding: 66px 0 90px; }
    .section-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
    .category-filters { margin-top: 26px; }
    .product-grid { gap: 31px 10px; }
    .card-arrow { display: none; }
    .product-card-body { padding: 12px 11px 14px; }
    .brand-tag { font-size: 8px; letter-spacing: .13em; }
    .product-card h3 { font-size: 13px; line-height: 1.35; }
    .card-meta { align-items: flex-start; flex-direction: column; gap: 4px; margin-top: 10px; }
    .card-price { font-size: 13px; }
    .card-category { font-size: 8px; }
    .breadcrumbs { margin: 3px 0 22px; }
    .product-page { padding-top: 24px; padding-bottom: 84px; }
    .product-information { padding-top: 16px; }
    .product-information h1 { font-size: 26px; }
    .price-row { align-items: flex-start; flex-direction: column; gap: 11px; }
    .shipping-badge { font-size: 9px; }
    .amazon-cta { min-height: 56px; padding: 0 16px; font-size: 12px; }
    .product-story { gap: 34px; margin-top: 76px; padding-top: 62px; }
    .rich-description { font-size: 15px; }
    .footer-grid { grid-template-columns: 1fr; gap: 42px; padding: 55px 0 45px; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
