@font-face {
    font-family: "Manrope";
    src: url("/fonts/storefront/manrope-latin.woff2") format("woff2");
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Manrope";
    src: url("/fonts/storefront/manrope-latin-ext.woff2") format("woff2");
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Merriweather";
    src: url("/fonts/storefront/merriweather/merriweather-300.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Merriweather";
    src: url("/fonts/storefront/merriweather/merriweather-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --cream: #fbf6e8;
    --mint: #d9eee8;
    --sage: #dfeadd;
    --blush: #f3d9d3;
    --lavender: #ebe4f4;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: #ffffff;
    --ink: #20312d;
    --muted: #6d807a;
    --line: rgba(133, 158, 151, 0.22);
    --primary: var(--theme-primary, #86a8a4);
    --accent: var(--theme-accent, #e8b86d);
    --success: #30945f;
    --danger: #b75c60;
    --shadow: 0 22px 60px rgba(32, 49, 45, 0.09);
    --shadow-strong: 0 32px 90px rgba(32, 49, 45, 0.16);
    --font-sans: var(--body-font, "Merriweather", "Manrope", "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif);
    --font-heading: var(--heading-font, "Merriweather", "Manrope", "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 8%, rgba(217, 238, 232, 0.92), transparent 29rem),
        radial-gradient(circle at 88% 14%, rgba(251, 246, 232, 0.95), transparent 31rem),
        radial-gradient(circle at 72% 86%, rgba(235, 228, 244, 0.78), transparent 28rem),
        linear-gradient(135deg, #f8fbf8 0%, #fbf6e8 46%, #f7f3fb 100%);
    color: var(--ink);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.65;
}

body::selection {
    background: var(--mint);
    color: var(--ink);
}

body.checkout-locked {
    overflow: hidden;
}

img,
model-viewer {
    max-width: 100%;
}

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

button,
input,
textarea {
    font: inherit;
}

.section-shell {
    width: min(100% - 56px, 1480px);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: minmax(190px, auto) 1fr auto;
    gap: 16px;
    align-items: center;
    width: min(100% - 24px, 1520px);
    min-height: 78px;
    margin: 12px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 52px rgba(32, 49, 45, 0.08);
    padding: 10px 18px;
    backdrop-filter: blur(20px);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0;
    min-width: 0;
}

.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(145deg, #fff, var(--mint));
    box-shadow: 0 10px 28px rgba(32, 49, 45, 0.09);
}

.brand-mark-wide {
    width: clamp(168px, 18vw, 238px);
    height: 58px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand-mark img {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    object-fit: cover;
}

.brand-mark-wide img,
.brand-logo-image {
    width: 100%;
    height: auto;
    max-height: 58px;
    border-radius: 0;
    object-fit: contain;
    object-position: left center;
}

.brand-lockup strong,
.brand-lockup small {
    display: block;
}

.brand-lockup strong {
    color: var(--ink);
    font-weight: 650;
    letter-spacing: -0.03em;
}

.brand-lockup small {
    max-width: 210px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.site-nav a {
    border-radius: 999px;
    color: var(--muted);
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 680;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
    transform: translateY(-1px);
    background: var(--mint);
    color: var(--ink);
}

.header-actions,
.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.inline-cart-form {
    display: contents;
}

.header-cart-link {
    position: relative;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid color-mix(in srgb, var(--primary), #ffffff 72%);
    border-radius: 999px;
    background: #fffaf1;
    color: var(--ink);
    padding: 9px 14px 9px 12px;
    font-size: 0.88rem;
    font-weight: 850;
    box-shadow: 0 12px 28px rgba(4, 114, 116, 0.1);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cart-link:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--accent), #ffffff 42%);
    background: #fff4e9;
}

.header-cart-icon {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: var(--primary);
}

.header-cart-icon svg {
    width: 22px;
    height: 22px;
}

.header-cart-badge {
    display: grid;
    min-width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    padding: 0 7px;
    font-size: 0.72rem;
    line-height: 1;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: 10px;
}

.menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: var(--ink);
}

.primary-button,
.secondary-button,
.lot-form button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--button-radius, 999px);
    cursor: pointer;
    padding: 12px 22px;
    font-weight: 720;
    letter-spacing: -0.01em;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-button,
.lot-form button {
    background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent), #9a6f2f 28%));
    box-shadow: 0 18px 38px rgba(194, 140, 57, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.42);
    color: #2b2111;
}

.primary-button:hover,
.lot-form button:hover,
.secondary-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.secondary-button {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
}

.compact {
    min-height: 40px;
    padding: 9px 16px;
    font-size: 0.9rem;
}

.wide {
    width: 100%;
}

.checkout-feedback {
    position: fixed;
    top: 104px;
    left: 50%;
    z-index: 90;
    width: min(560px, calc(100% - 32px));
    transform: translateX(-50%);
    box-shadow: var(--shadow-strong);
}

.checkout-dialog {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    place-items: center;
    padding: 24px;
}

.checkout-dialog.is-open {
    display: grid;
}

.checkout-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(217, 238, 232, 0.78), transparent 24rem),
        radial-gradient(circle at 82% 80%, rgba(235, 228, 244, 0.62), transparent 24rem),
        rgba(25, 36, 32, 0.48);
    cursor: pointer;
    backdrop-filter: blur(18px);
}

.quick-checkout-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(270px, 0.62fr) minmax(430px, 1fr);
    gap: 14px;
    width: min(100%, 1010px);
    max-height: min(720px, calc(100vh - 48px));
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 42px 120px rgba(20, 31, 27, 0.28);
    padding: 14px;
    backdrop-filter: blur(22px);
}

.checkout-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: 0 12px 32px rgba(32, 49, 45, 0.12);
}

.quick-checkout-summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 28px;
    background:
        radial-gradient(circle at 18% 18%, rgba(217, 238, 232, 0.9), transparent 16rem),
        linear-gradient(150deg, rgba(251, 246, 232, 0.96), rgba(255, 255, 255, 0.82));
    padding: 24px;
}

.quick-checkout-summary p {
    color: var(--muted);
}

.quick-checkout-form {
    box-shadow: none;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.quick-checkout-form.checkout-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    padding: 18px;
}

.quantity-field {
    max-width: 170px;
}

.quick-checkout-form .form-head {
    padding-right: 96px;
}

.quick-checkout-form .form-head h2 {
    font-size: clamp(1.6rem, 2.35vw, 2.25rem);
}

.quick-checkout-form input,
.quick-checkout-form textarea {
    padding: 10px 13px;
}

.quick-checkout-form .check-row {
    font-size: 0.82rem;
    line-height: 1.35;
}

.quick-checkout-form .legal-links {
    margin: 4px 0 0;
    font-size: 0.86rem;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 38px 0 54px;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(135deg, rgba(134, 168, 164, 0.08) 0 1px, transparent 1px 42px),
        radial-gradient(circle at 34% 28%, rgba(243, 217, 211, 0.56), transparent 20rem);
    background-size: 92px 92px, 100% 100%;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    gap: 52px;
    align-items: center;
    min-height: 510px;
}

.eyebrow {
    margin: 0 0 14px;
    color: #56776f;
    font-size: 0.75rem;
    font-weight: 760;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    letter-spacing: -0.06em;
    text-wrap: balance;
}

h1 {
    max-width: 680px;
    font-size: clamp(2.9rem, 5.15vw, 4.95rem);
    font-weight: 560;
    line-height: 1;
}

.hero-copy h1 {
    background: linear-gradient(115deg, #16241f 0%, #2d5e53 48%, #9a6a20 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    font-weight: 540;
    line-height: 1.08;
}

h3 {
    font-size: 1.12rem;
    font-weight: 680;
}

.hero-lead {
    max-width: 600px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.72;
}

.hero-actions {
    margin-top: 24px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 650px;
    margin: 24px 0 0;
}

.hero-metrics div,
.trust-card,
.product-info-card,
.usage-card,
.report-card,
.lot-card,
.purchase-summary,
.checkout-form,
.faq-grid details,
.journal-grid article,
.footer-disclaimer {
    border: 1px solid rgba(255, 255, 255, 0.74);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-metrics div {
    border-radius: 24px;
    padding: 16px;
}

.hero-metrics dt {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.hero-metrics dd {
    margin: 5px 0 0;
    color: var(--ink);
    font-weight: 650;
}

.hero-visual {
    position: relative;
    min-height: 500px;
}

.hero-glow {
    position: absolute;
    inset: 4% 2% 8% 4%;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--mint), var(--cream), var(--lavender));
    filter: blur(10px);
    opacity: 0.9;
}

.model-card {
    position: absolute;
    inset: 28px 34px 28px 20px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 34px;
    background:
        radial-gradient(circle at 50% 78%, rgba(134, 168, 164, 0.22), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(217, 238, 232, 0.72));
    box-shadow: 0 34px 100px rgba(32, 49, 45, 0.14);
}

.logo-hero-card img {
    border-radius: 28px;
}

.product-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-packshot-card {
    position: absolute;
    right: 4px;
    bottom: 34px;
    z-index: 4;
    display: grid;
    gap: 8px;
    width: clamp(132px, 16vw, 190px);
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(255, 250, 241, 0.84);
    box-shadow: 0 24px 62px rgba(23, 22, 17, 0.18);
    padding: 10px;
    backdrop-filter: blur(16px);
}

.hero-packshot-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.16;
    border-radius: 18px;
    object-fit: cover;
}

.hero-packshot-card figcaption {
    color: var(--lux-muted);
    font-size: 0.76rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

model-viewer {
    position: relative;
    z-index: 2;
    width: min(620px, 112%);
    height: 500px;
    background: transparent;
}

model-viewer img[slot="poster"] {
    width: 180px;
    height: 180px;
    border-radius: 24px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 15px;
    box-shadow: 0 18px 42px rgba(32, 49, 45, 0.12);
    backdrop-filter: blur(14px);
    animation: floatCard 7s ease-in-out infinite;
}

.floating-card span,
.trust-card span,
.mini-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--primary), var(--mint));
    box-shadow: 0 0 0 5px rgba(134, 168, 164, 0.13);
}

.floating-card strong {
    color: var(--ink);
    font-size: 0.88rem;
}

.card-lab { top: 48px; left: 0; }
.card-coa { top: 112px; right: 0; animation-delay: 0.8s; }
.card-order { bottom: 62px; left: 20px; animation-delay: 1.5s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.trust-strip,
.product-section,
.analysis-section,
.lot-section,
.purchase-section,
.faq-section,
.journal-section {
    padding: 64px 0;
}

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

.trust-card,
.product-info-card,
.usage-card,
.report-card,
.lot-card,
.purchase-summary,
.checkout-form,
.faq-grid details,
.journal-grid article {
    border-radius: 28px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.trust-card:hover,
.product-info-card:hover,
.usage-card:hover,
.report-card:hover,
.faq-grid details:hover,
.journal-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(134, 168, 164, 0.42);
    box-shadow: var(--shadow-strong);
}

.trust-card {
    padding: 24px;
}

.trust-card .trust-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 16px;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.95), transparent 38%),
        linear-gradient(135deg, rgba(217, 238, 232, 0.95), rgba(232, 184, 109, 0.22));
    box-shadow: 0 14px 32px rgba(32, 49, 45, 0.11);
}

.trust-card .trust-icon.large {
    width: 58px;
    height: 58px;
    border-radius: 20px;
}

.trust-card .trust-icon svg {
    width: 22px;
    height: 22px;
    fill: #1f6f5b;
}

.trust-card .trust-icon.large svg {
    width: 30px;
    height: 30px;
}

.trust-card strong {
    display: block;
    margin-top: 18px;
    color: var(--ink);
}

.trust-card p,
.product-info-card p,
.usage-card p,
.section-heading p,
.purchase-summary p,
.report-card p,
.journal-grid p,
.site-footer p {
    color: var(--muted);
}

.product-showcase,
.analysis-grid,
.purchase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.product-info-card,
.usage-card,
.report-card,
.purchase-summary,
.checkout-form {
    padding: 30px;
}

.product-info-card > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
}

.product-side-stack {
    display: grid;
    gap: 18px;
}

.product-note-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    padding: 24px;
    backdrop-filter: blur(14px);
}

.product-note-card div {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    padding: 14px;
}

.product-note-card span {
    width: 9px;
    height: 9px;
    margin-top: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--mint));
    box-shadow: 0 0 0 5px rgba(134, 168, 164, 0.12);
}

.product-note-card strong {
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 720;
    letter-spacing: -0.02em;
}

.product-note-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.48;
}

.product-360-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 244, 223, 0.14);
    border-radius: 22px;
    background:
        radial-gradient(circle at 22% 18%, rgba(4, 114, 116, 0.22), transparent 14rem),
        radial-gradient(circle at 74% 32%, rgba(235, 97, 10, 0.18), transparent 15rem),
        linear-gradient(145deg, rgba(23, 22, 17, 0.98), rgba(42, 38, 29, 0.94));
    box-shadow: 0 28px 80px rgba(23, 22, 17, 0.16);
    color: #fff4df;
    padding: 24px;
}

.product-360-card::after {
    content: "";
    position: absolute;
    inset: auto 28px 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 244, 223, 0.2), transparent);
}

.product-360-copy {
    position: relative;
    z-index: 2;
    max-width: 420px;
}

.product-360-copy p:not(.eyebrow) {
    max-width: 24rem;
    margin: 6px 0 0;
    color: rgba(255, 244, 223, 0.66);
    font-size: 0.92rem;
    line-height: 1.45;
}

.product-360-card model-viewer {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 340px;
    margin-top: 10px;
}

.product-360-card model-viewer img[slot="poster"] {
    width: 180px;
    height: 180px;
    border-radius: 18px;
    object-fit: cover;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.feature-list div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.68);
    padding: 15px;
}

.feature-list .mini-icon {
    grid-row: span 2;
    margin-top: 4px;
}

.feature-list span:not(.mini-icon) {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.feature-list strong {
    color: var(--ink);
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.price-block,
.price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 14px;
    margin: 24px 0;
}

.price-block strong,
.price-row strong {
    color: var(--ink);
    font-size: 2.2rem;
    font-weight: 620;
    letter-spacing: -0.045em;
}

.price-block em,
.price-row span {
    color: var(--muted);
    font-style: normal;
    text-decoration: line-through;
}

.disclaimer-box,
.success-message,
.error-message,
.lot-success,
.lot-error {
    border-radius: 20px;
    padding: 16px;
}

.disclaimer-box,
.error-message,
.lot-error {
    border: 1px solid rgba(232, 184, 109, 0.4);
    background: rgba(251, 246, 232, 0.95);
    color: #73511a;
    font-weight: 650;
}

.success-message,
.lot-success {
    border: 1px solid rgba(48, 148, 95, 0.22);
    background: rgba(226, 247, 235, 0.95);
    color: var(--success);
    font-weight: 650;
}

.usage-card.warn {
    background: linear-gradient(180deg, rgba(251, 246, 232, 0.92), rgba(255, 255, 255, 0.85));
}

.analysis-section {
    background: linear-gradient(135deg, rgba(217, 238, 232, 0.58), rgba(235, 228, 244, 0.46));
}

.section-heading {
    max-width: 640px;
}

.section-heading.center {
    margin: 0 auto 34px;
    text-align: center;
}

.report-grid {
    display: grid;
    gap: 18px;
}

.report-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(226, 247, 235, 0.94);
    color: var(--success);
    padding: 7px 12px;
    font-size: 0.78rem;
    font-weight: 760;
}

.test-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    margin: 24px 0;
}

.test-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
}

.test-list span {
    color: var(--muted);
}

.test-list strong {
    color: var(--ink);
}

.lot-card {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    gap: 36px;
    align-items: center;
    padding: 34px;
}

.lot-card p {
    color: var(--muted);
}

.lot-form label,
.checkout-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 640;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-top: 12px;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    outline: none;
    padding: 14px 16px;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
textarea:focus {
    border-color: rgba(134, 168, 164, 0.78);
    box-shadow: 0 0 0 5px rgba(134, 168, 164, 0.14);
}

.purchase-section {
    background: linear-gradient(135deg, rgba(251, 246, 232, 0.78), rgba(217, 238, 232, 0.62));
}

.purchase-summary {
    position: sticky;
    top: 118px;
}

.purchase-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0;
}

.purchase-trust span {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    padding: 10px;
    font-size: 0.78rem;
    font-weight: 750;
    text-align: center;
}

.checkout-form {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    overflow: hidden;
}

.checkout-form::before {
    content: "Güvenli ödeme";
    position: absolute;
    top: 18px;
    right: 18px;
    border-radius: 999px;
    background: rgba(226, 247, 235, 0.95);
    color: var(--success);
    padding: 6px 10px;
    font-size: 0.72rem;
    font-weight: 760;
}

.form-head {
    padding-right: 120px;
}

.checkout-form label small {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 500;
}

.full {
    grid-column: 1 / -1;
}

.legal-links a,
.check-row a {
    color: #527a72;
    font-weight: 760;
}

.check-row {
    display: flex !important;
    align-items: flex-start;
    gap: 10px !important;
    color: var(--muted) !important;
    font-size: 0.92rem;
}

.check-row input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-top: 2px;
}

.faq-grid,
.journal-grid {
    display: grid;
    gap: 16px;
}

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

.faq-grid details,
.journal-grid article {
    padding: 22px;
}

.faq-grid details[open] {
    background: rgba(217, 238, 232, 0.72);
}

.faq-grid summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 740;
}

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

.journal-grid article span {
    color: #527a72;
    font-size: 0.78rem;
    font-weight: 760;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.58);
    padding: 58px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.15fr;
    gap: 32px;
    width: min(100% - 56px, 1480px);
}

.site-footer img {
    border: 0;
    border-radius: 0;
}

.footer-brand {
    display: grid;
    align-content: start;
    gap: 14px;
}

.footer-logo {
    width: min(100%, 250px);
    height: auto;
    opacity: 0.92;
}

.footer-disclaimer {
    border-radius: 24px;
    padding: 20px;
}

.hero-carousel-section {
    position: relative;
    overflow: hidden;
}

.hero-slide[hidden] {
    display: none;
}

.hero-slide {
    animation: heroSlideIn 360ms ease both;
}

.banner-image-card {
    overflow: hidden;
}

.banner-image-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.hero-carousel-controls {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: -72px;
    padding-bottom: 32px;
}

.hero-nav-button {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 244, 223, 0.22);
    border-radius: 999px;
    background: rgba(255, 244, 223, 0.9);
    color: #16372f;
    font-size: 1.65rem;
    line-height: 1;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.hero-carousel-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 244, 223, 0.14);
    border-radius: 999px;
    background: rgba(17, 28, 24, 0.42);
    padding: 9px 12px;
    backdrop-filter: blur(14px);
}

.hero-carousel-dots button {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 244, 223, 0.42);
}

.hero-carousel-dots button.is-active {
    width: 28px;
    background: #d8a84f;
}

.site-page-hero {
    padding-top: 180px;
    padding-bottom: 44px;
}

.site-page-hero h1 {
    max-width: 900px;
    margin: 12px 0 18px;
    color: #fff4df;
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
}

.site-page-content {
    max-width: 920px;
    margin-bottom: 72px;
    border: 1px solid rgba(255, 244, 223, 0.1);
    border-radius: 34px;
    background: rgba(255, 244, 223, 0.06);
    padding: clamp(26px, 5vw, 54px);
    color: rgba(255, 244, 223, 0.82);
    font-size: 1.08rem;
    line-height: 1.85;
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-payment-methods {
    display: grid;
    align-content: start;
    gap: 12px;
    border: 1px solid rgba(255, 244, 223, 0.12);
    border-radius: 24px;
    background: rgba(255, 244, 223, 0.055);
    padding: 18px;
    color: rgba(255, 244, 223, 0.78);
}

.footer-payment-methods > span {
    display: block;
    color: rgba(255, 244, 223, 0.72);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.payment-card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-card-brand {
    display: inline-flex;
    min-height: 42px;
    min-width: 86px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 244, 223, 0.16);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 241, 0.9));
    color: #042f31;
    padding: 7px 10px;
    font-family: var(--font-sans);
    font-weight: 850;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.payment-card-brand svg {
    width: 86px;
    height: 28px;
    display: block;
}

.payment-card-brand text {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.payment-card-brand.visa text {
    font-size: 24px;
    fill: #1a4c9a;
    font-style: italic;
}

.payment-card-brand.mastercard circle:first-child {
    fill: #eb001b;
}

.payment-card-brand.mastercard circle:nth-child(2) {
    fill: #f79e1b;
    opacity: 0.92;
}

.payment-card-brand.mastercard text {
    font-size: 8px;
    fill: #263238;
    letter-spacing: -0.01em;
    text-transform: lowercase;
}

.payment-card-brand.troy text {
    font-size: 22px;
    fill: #047274;
}

.payment-card-brand.secure svg {
    width: 96px;
}

.payment-card-brand.secure text {
    font-size: 15px;
    fill: #6a5837;
    letter-spacing: -0.01em;
}

/* keep text color fallback for non-svg rendering */
.payment-card-brand.visa {
    color: #163b8f;
}

.payment-card-brand.mastercard {
    color: #d84f1f;
}

.payment-card-brand.troy {
    color: #047274;
}

.payment-card-brand.secure {
    color: #6a5837;
}

.compact-footer .footer-payment-methods {
    justify-self: center;
    border-color: rgba(4, 114, 116, 0.12);
    background: rgba(255, 250, 241, 0.08);
    padding: 10px 12px;
}

.compact-footer .footer-payment-methods > span {
    color: rgba(255, 244, 223, 0.68);
    text-align: center;
}

.footer-bottom-line {
    display: grid;
    grid-template-columns: minmax(0, 0.45fr) auto minmax(0, 0.55fr);
    gap: 18px;
    align-items: center;
}

.footer-bottom-line > span:first-child {
    color: rgba(255, 244, 223, 0.78);
    font-weight: 650;
}

.mobile-buy-bar {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    padding: 12px;
    box-shadow: 0 22px 58px rgba(32, 49, 45, 0.18);
    backdrop-filter: blur(18px);
}

.mobile-buy-bar div {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.mobile-buy-bar span {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-buy-bar strong {
    color: var(--ink);
    font-weight: 650;
}

.tracking-main {
    min-height: 100vh;
    padding: 74px 0 96px;
}

.tracking-shell {
    display: grid;
    gap: 24px;
}

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

.tracking-card {
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 26px;
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 24px;
    backdrop-filter: blur(14px);
}

.tracking-card.highlight {
    background: linear-gradient(145deg, rgba(251, 246, 232, 0.92), rgba(255, 255, 255, 0.88));
}

.tracking-card.wide {
    grid-column: 1 / -1;
}

.tracking-card span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 650;
}

.tracking-card strong {
    display: block;
    margin-top: 8px;
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 650;
}

.tracking-card a {
    display: inline-flex;
    margin-top: 10px;
    color: #527a72;
    font-weight: 760;
}

.tracking-items,
.status-timeline {
    display: grid;
    gap: 12px;
}

.status-timeline {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.tracking-items div,
.status-timeline li {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.66);
    padding: 16px;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-copy,
    .hero-visual,
    .trust-card,
    .product-info-card,
    .usage-card,
    .report-card,
    .lot-card,
    .purchase-summary,
    .checkout-form,
    .faq-grid details,
    .journal-grid article {
        animation: storefront-rise 560ms ease both;
    }

    .hero-visual,
    .checkout-form {
        animation-delay: 90ms;
    }

    .trust-card:nth-child(2),
    .report-card:nth-child(2n),
    .journal-grid article:nth-child(2) {
        animation-delay: 120ms;
    }

    @keyframes storefront-rise {
        from { opacity: 0; transform: translateY(16px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

@media (max-width: 1100px) {
    body.mobile-menu-locked {
        overflow: hidden;
        touch-action: none;
    }

    .site-header {
        grid-template-columns: auto auto;
        justify-content: start;
        justify-items: start;
    }

    .menu-button {
        display: block;
        order: 1;
    }

    .brand-lockup {
        order: 2;
    }

    .site-nav,
    .header-actions {
        order: 3;
        grid-column: 1 / -1;
        display: none;
        width: 100%;
    }

    .premium-site-header:not(.has-nav) .header-actions {
        grid-column: auto;
        display: flex;
    }

    .site-nav.is-open,
    .site-nav.is-open + .header-actions {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .site-nav {
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.86);
        padding: 10px;
    }

    .site-nav.is-open {
        border-radius: 20px;
        background: rgba(255, 250, 241, 0.96);
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .site-nav.is-open a {
        display: flex;
        min-height: 38px;
        align-items: center;
        justify-content: flex-start;
        padding: 8px 12px;
        text-align: left;
    }

    .site-nav.is-open + .header-actions {
        gap: 8px;
    }

    .site-nav.is-open + .header-actions .compact {
        min-height: 40px;
        padding: 9px 14px;
        font-size: 0.86rem;
    }

    .hero-grid,
    .product-showcase,
    .analysis-grid,
    .purchase-grid,
    .lot-card {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
    }

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

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

    .purchase-summary {
        position: static;
    }
}

@media (max-width: 760px) {
    body {
        padding-bottom: 86px;
    }

    .section-shell {
        width: min(100% - 24px, 1220px);
    }

    .site-header {
        top: 8px;
        grid-template-columns: 44px minmax(0, auto);
        column-gap: 8px;
        width: min(100% - 12px, 1520px);
        min-height: 66px;
        margin-top: 8px;
        border-radius: 20px;
        padding: 9px 10px;
    }

    .brand-lockup span:not(.brand-mark) {
        display: none;
    }

    .brand-mark-wide {
        width: min(58vw, 188px);
        height: 46px;
    }

    .brand-logo-image {
        max-height: 46px;
    }

    .premium-site-header:not(.has-nav) .header-actions .compact {
        min-height: 42px;
        padding: 9px 13px;
        font-size: 0.82rem;
    }

    .hero-section {
        padding: 28px 0 42px;
    }

    .hero-grid {
        gap: 20px;
    }

    h1 {
        font-size: clamp(2.45rem, 12vw, 3.55rem);
        line-height: 0.98;
    }

    h2 {
        font-size: clamp(1.85rem, 8.6vw, 2.35rem);
    }

    .hero-lead {
        margin-top: 14px;
        font-size: 1rem;
        line-height: 1.58;
    }

    .hero-actions {
        margin-top: 18px;
    }

    .hero-actions,
    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .secondary-button,
    .lot-form button {
        width: 100%;
    }

    .hero-metrics,
    .trust-grid,
    .feature-list,
    .test-list,
    .purchase-trust,
    .checkout-form,
    .faq-grid,
    .journal-grid,
    .tracking-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .banner-image-card img {
        min-height: 260px;
    }

    .hero-carousel-controls {
        margin-top: -28px;
        padding-bottom: 20px;
    }

    .hero-nav-button {
        width: 38px;
        height: 38px;
        font-size: 1.35rem;
    }

    .site-page-hero {
        padding-top: 128px;
    }

    .hero-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 16px;
    }

    .hero-metrics div {
        border-radius: 18px;
        padding: 10px 8px;
    }

    .hero-metrics dt {
        font-size: 0.66rem;
    }

    .hero-metrics dd {
        font-size: 0.78rem;
        line-height: 1.2;
        word-break: break-word;
    }

    .hero-visual {
        min-height: 300px;
    }

    .model-card {
        inset: 0;
        border-radius: 28px;
    }

    .product-hero-image {
        object-position: center;
    }

    model-viewer {
        width: min(390px, 100%);
        height: 340px;
    }

    .floating-card {
        display: none;
    }

    .product-info-card,
    .usage-card,
    .report-card,
    .lot-card,
    .purchase-summary,
    .checkout-form {
        padding: 20px;
    }

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

    .form-head {
        padding-right: 0;
    }

    .checkout-form::before {
        position: static;
        grid-column: 1 / -1;
        width: max-content;
    }

    .mobile-buy-bar {
        display: flex;
        padding: 10px;
    }

    .mobile-buy-bar .primary-button {
        width: auto;
        min-width: 140px;
        white-space: nowrap;
    }

    .checkout-dialog {
        align-items: end;
        padding: 10px;
    }

    .quick-checkout-panel {
        grid-template-columns: 1fr;
        gap: 8px;
        max-height: calc(100vh - 20px);
        border-radius: 26px;
        padding: 8px;
    }

    .quick-checkout-summary {
        display: grid;
        gap: 6px;
        padding: 14px;
    }

    .quick-checkout-summary .eyebrow {
        margin-bottom: 0;
    }

    .quick-checkout-summary h2 {
        font-size: 1.45rem;
        line-height: 1.05;
    }

    .quick-checkout-summary .price-row {
        margin: 4px 0;
    }

    .quick-checkout-summary .price-row strong {
        font-size: 1.45rem;
    }

    .quick-checkout-summary .purchase-trust,
    .quick-checkout-summary > p {
        display: none;
    }

    .quick-checkout-form.checkout-form {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px;
    }

    .quick-checkout-form .form-head {
        padding-right: 42px;
    }

    .quick-checkout-form .form-head h2 {
        font-size: 1.42rem;
    }

    .quick-checkout-form.checkout-form::before {
        display: none;
    }

    .quick-checkout-form input,
    .quick-checkout-form textarea {
        padding: 9px 12px;
    }

    .quick-checkout-form .check-row {
        font-size: 0.78rem;
    }

    .quantity-field {
        max-width: none;
    }

    .trust-strip,
    .product-section,
    .analysis-section,
    .lot-section,
    .purchase-section,
    .faq-section,
    .journal-section {
        padding: 44px 0;
    }
}

/* Live storefront direction: restrained editorial commerce */
:root {
    --lux-ink: #171611;
    --lux-ink-soft: #2a261d;
    --lux-paper: #f5efe4;
    --lux-paper-strong: #fffaf1;
    --lux-green: var(--theme-primary, #047274);
    --lux-green-dark: #064345;
    --lux-green-ink: #022f31;
    --lux-line: rgba(4, 114, 116, 0.16);
    --lux-orange: var(--theme-accent, #EB610A);
    --lux-orange-dark: #b54808;
    --lux-orange-soft: #fff1e8;
    --lux-gold: var(--lux-orange);
    --lux-gold-dark: var(--lux-orange-dark);
    --lux-muted: #746c5e;
}

body {
    background:
        radial-gradient(circle at 11% 8%, rgba(4, 114, 116, 0.12), transparent 26rem),
        radial-gradient(circle at 86% 6%, rgba(235, 97, 10, 0.08), transparent 24rem),
        linear-gradient(90deg, rgba(23, 22, 17, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, #f8f2e8 0%, #f4eadf 46%, #fbf7ef 100%);
    background-size: 72px 72px, 100% 100%;
    color: var(--lux-ink);
}

.site-header {
    top: 16px;
    border: 1px solid rgba(4, 114, 116, 0.18);
    border-radius: 22px;
    background:
        linear-gradient(90deg, rgba(4, 114, 116, 0.08), transparent 38%, rgba(235, 97, 10, 0.08)),
        linear-gradient(135deg, rgba(255, 250, 241, 0.97), rgba(246, 250, 241, 0.92)),
        rgba(255, 250, 241, 0.92);
    box-shadow: 0 18px 44px rgba(4, 44, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.brand-mark {
    border-color: rgba(23, 22, 17, 0.12);
    border-radius: 12px;
    background: #fffaf1;
    box-shadow: none;
}

.brand-mark-wide {
    border: 0;
    background: transparent;
}

.site-nav {
    justify-self: center;
    border: 1px solid rgba(4, 114, 116, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    padding: 4px;
}

.site-nav a {
    color: #5e574a;
}

.site-nav a:hover {
    background: rgba(4, 114, 116, 0.1);
    color: var(--lux-green);
}

.site-nav a[href*="sepet"]:hover,
.site-nav a[href*="satin"],
.site-nav a[href*="checkout"] {
    background: rgba(235, 97, 10, 0.1);
    color: var(--lux-orange-dark);
}

.primary-button,
.lot-form button {
    border-color: rgba(235, 97, 10, 0.38);
    background: linear-gradient(135deg, #ff8a32 0%, var(--lux-orange) 48%, var(--lux-orange-dark) 100%);
    box-shadow: 0 18px 38px rgba(235, 97, 10, 0.25);
    color: #fffaf1;
}

.secondary-button {
    border-color: rgba(23, 22, 17, 0.16);
    background: rgba(255, 250, 241, 0.72);
    color: var(--lux-ink);
}

.primary-button:hover,
.lot-form button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 46px rgba(4, 44, 42, 0.14);
}

.hero-section {
    margin: 18px auto 0;
    width: min(100% - 32px, 1240px);
    border-radius: 34px;
    background:
        linear-gradient(115deg, rgba(255, 250, 241, 0.08), transparent 42%),
        radial-gradient(circle at 9% 78%, rgba(4, 114, 116, 0.28), transparent 24rem),
        radial-gradient(circle at 84% 28%, rgba(235, 97, 10, 0.24), transparent 25rem),
        #171611;
    color: #fff4df;
    padding: 56px 0;
}

.hero-section::before {
    background-image:
        linear-gradient(90deg, rgba(255, 250, 241, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 250, 241, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
}

.hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 44px;
    min-height: 520px;
}

.hero-copy .eyebrow,
.hero-section .eyebrow {
    color: #ff9a4d;
}

.hero-copy h1 {
    max-width: 610px;
    background: none;
    color: #fff4df;
    font-size: clamp(3rem, 5vw, 5.05rem);
    font-weight: 520;
    letter-spacing: -0.075em;
}

.hero-copy h1::after {
    content: "";
    display: block;
    width: 132px;
    height: 4px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lux-green), var(--lux-orange));
    box-shadow: 0 0 34px rgba(235, 97, 10, 0.32);
}

.hero-lead {
    max-width: 560px;
    color: rgba(255, 244, 223, 0.74);
    font-size: 1.06rem;
}

.hero-metrics {
    max-width: 600px;
}

.hero-metrics div {
    border: 1px solid rgba(255, 244, 223, 0.16);
    border-radius: 16px;
    background: rgba(255, 244, 223, 0.06);
    box-shadow: none;
    backdrop-filter: none;
}

.hero-metrics dt {
    color: rgba(255, 244, 223, 0.58);
}

.hero-metrics dd {
    color: #fff4df;
}

.hero-visual {
    min-height: 520px;
}

.hero-glow,
.floating-card {
    display: none;
}

.model-card {
    inset: 0;
    border: 1px solid rgba(255, 244, 223, 0.14);
    border-radius: 26px;
    background:
        radial-gradient(circle at 78% 24%, rgba(4, 114, 116, 0.18), transparent 20rem),
        radial-gradient(circle at 18% 72%, rgba(235, 97, 10, 0.1), transparent 18rem),
        #221f18;
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.36);
}

.product-hero-image {
    object-fit: cover;
}

.trust-strip,
.product-section,
.analysis-section,
.lot-section,
.faq-section,
.journal-section {
    padding: 74px 0;
}

.trust-grid {
    border-top: 1px solid var(--lux-line);
    border-bottom: 1px solid var(--lux-line);
    gap: 0;
}

.trust-card {
    min-height: 0;
    border: 0;
    border-right: 1px solid var(--lux-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 28px 22px;
    backdrop-filter: none;
}

.trust-card:last-child {
    border-right: 0;
}

.trust-card span,
.mini-icon {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lux-green), var(--lux-orange));
    box-shadow: none;
}

.trust-card strong {
    margin-top: 14px;
    font-size: 1.04rem;
}

.trust-card p {
    margin-bottom: 0;
}

.product-info-card,
.usage-card,
.report-card,
.lot-card,
.checkout-form,
.faq-grid details,
.journal-grid article,
.footer-disclaimer,
.product-note-card,
.product-360-card {
    border: 1px solid var(--lux-line);
    border-radius: 18px;
    background: rgba(255, 250, 241, 0.82);
    box-shadow: 0 18px 46px rgba(4, 44, 42, 0.06);
    backdrop-filter: none;
}

.product-info-card:hover,
.usage-card:hover,
.report-card:hover,
.faq-grid details:hover,
.journal-grid article:hover,
.trust-card:hover {
    transform: none;
    border-color: rgba(42, 38, 29, 0.2);
    box-shadow: 0 18px 46px rgba(23, 22, 17, 0.06);
}

.product-info-card {
    padding: 42px;
}

.product-info-card > p {
    -webkit-line-clamp: 6;
}

.product-note-card {
    padding: 18px;
}

.product-note-card div {
    border: 1px solid rgba(42, 38, 29, 0.1);
    border-radius: 14px;
    background: rgba(255, 250, 241, 0.72);
    padding: 16px;
}

.product-note-card div:last-child {
    border-bottom: 1px solid rgba(42, 38, 29, 0.1);
}

.analysis-section {
    background: #ede3d4;
}

.report-card {
    background: #fffaf1;
}

.status-pill {
    background: rgba(4, 114, 116, 0.1);
}

.test-list div {
    border-color: rgba(42, 38, 29, 0.12);
}

.lot-card {
    background:
        linear-gradient(105deg, rgba(23, 22, 17, 0.94), rgba(42, 38, 29, 0.9)),
        #171611;
    color: #fff4df;
}

.lot-card h2,
.lot-card label {
    color: #fff4df;
}

.lot-card p {
    color: rgba(255, 244, 223, 0.68);
}

.lot-card input {
    border-color: rgba(255, 244, 223, 0.18);
    background: rgba(255, 244, 223, 0.08);
    color: #fff4df;
}

.faq-grid details,
.journal-grid article {
    background: #fffaf1;
}

.journal-grid article span {
    color: var(--lux-green);
}

.quick-checkout-panel {
    border-radius: 22px;
    background: #fffaf1;
    box-shadow: 0 42px 130px rgba(0, 0, 0, 0.32);
}

.quick-checkout-summary {
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(23, 22, 17, 0.96), rgba(42, 38, 29, 0.92)),
        #171611;
    color: #fff4df;
}

.quick-checkout-summary h2,
.quick-checkout-summary .price-row strong {
    color: #fff4df;
}

.quick-checkout-summary p {
    color: rgba(255, 244, 223, 0.7);
}

.purchase-trust span {
    border-color: rgba(255, 244, 223, 0.16);
    background: rgba(255, 244, 223, 0.08);
    color: #fff4df;
}

.site-footer {
    background: #171611;
    color: #fff4df;
}

.site-footer h2,
.site-footer h3 {
    color: #fff4df;
}

.site-footer p {
    color: rgba(255, 244, 223, 0.68);
}

.footer-disclaimer {
    border: 1px solid rgba(255, 244, 223, 0.14);
    background: rgba(255, 244, 223, 0.06);
}

@media (max-width: 1100px) {
    .hero-section {
        width: min(100% - 20px, 1240px);
    }

    .trust-card {
        border-bottom: 1px solid var(--lux-line);
    }

    .trust-card:nth-child(2n) {
        border-right: 0;
    }
}

@media (max-width: 760px) {
    .site-header {
        top: 8px;
        border-radius: 16px;
    }

    .hero-section {
        width: min(100% - 16px, 1240px);
        margin-top: 10px;
        border-radius: 24px;
        padding: 34px 0 28px;
    }

    .hero-grid {
        gap: 18px;
    }

    .hero-copy h1 {
        font-size: clamp(2.45rem, 11.5vw, 3.45rem);
    }

    .hero-lead {
        color: rgba(255, 244, 223, 0.72);
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-metrics div {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
    }

    .hero-visual {
        min-height: 284px;
    }

    .model-card {
        border-radius: 18px;
    }

    .trust-strip,
    .product-section,
    .analysis-section,
    .lot-section,
    .faq-section,
    .journal-section {
        padding: 48px 0;
    }

    .trust-grid {
        border-bottom: 0;
    }

    .trust-card {
        border-right: 0;
        padding: 22px 0;
    }

    .product-info-card,
    .usage-card,
    .report-card,
    .lot-card,
    .checkout-form,
    .faq-grid details,
    .journal-grid article,
    .product-360-card {
        border-radius: 16px;
        padding: 20px;
    }

    .product-note-card {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .product-360-card model-viewer {
        height: 270px;
    }

    .quick-checkout-panel {
        border-radius: 18px;
    }
}

@media (max-width: 760px) {
    .hero-section {
        padding: 28px 0 24px;
    }

    .hero-actions .secondary-button {
        display: none;
    }

    .hero-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        margin-top: 14px;
    }

    .hero-metrics div {
        display: grid;
        align-items: start;
        justify-content: stretch;
        gap: 2px;
        min-width: 0;
        padding: 8px 6px;
    }

    .hero-metrics dt {
        font-size: 0.62rem;
        line-height: 1.1;
    }

    .hero-metrics dd {
        margin-top: 0;
        font-size: 0.72rem;
        line-height: 1.12;
    }

    .hero-visual {
        min-height: 248px;
    }

    .product-hero-image {
        object-position: center;
    }
}

.product-360-card {
    border-color: rgba(255, 244, 223, 0.14);
    background:
        radial-gradient(circle at 22% 18%, rgba(4, 114, 116, 0.28), transparent 14rem),
        radial-gradient(circle at 74% 32%, rgba(235, 97, 10, 0.2), transparent 15rem),
        linear-gradient(145deg, rgba(23, 22, 17, 0.98), rgba(42, 38, 29, 0.94));
    color: #fff4df;
}

.product-360-card:hover {
    border-color: rgba(255, 244, 223, 0.22);
    box-shadow: 0 28px 80px rgba(23, 22, 17, 0.16);
}

/* Distinct premium analysis section */
.analysis-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 16%, rgba(4, 114, 116, 0.24), transparent 24rem),
        radial-gradient(circle at 12% 12%, rgba(235, 97, 10, 0.24), transparent 22rem),
        radial-gradient(circle at 88% 78%, rgba(255, 244, 223, 0.08), transparent 24rem),
        linear-gradient(135deg, #171611 0%, #242016 52%, #14130f 100%);
    color: #fff4df;
}

.analysis-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 244, 223, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 244, 223, 0.035) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.24));
}

.analysis-section .section-shell {
    position: relative;
    z-index: 1;
}

.analysis-section .eyebrow {
    color: #ff9a4d;
}

.analysis-section h2,
.analysis-section h3 {
    color: #fff4df;
}

.analysis-section .section-heading p,
.analysis-section .report-card p,
.analysis-section .test-list span {
    color: rgba(255, 244, 223, 0.68);
}

.analysis-section .report-card {
    border-color: rgba(255, 244, 223, 0.16);
    background:
        linear-gradient(145deg, rgba(255, 250, 241, 0.96), rgba(245, 239, 228, 0.9)),
        #fffaf1;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.analysis-section .report-card h3,
.analysis-section .test-list strong {
    color: var(--lux-ink);
}

.analysis-section .report-card p,
.analysis-section .test-list span {
    color: #6f6759;
}

.analysis-section .test-list div {
    border-color: rgba(42, 38, 29, 0.14);
}

.analysis-section .status-pill {
    border: 1px solid rgba(4, 114, 116, 0.18);
    background: rgba(4, 114, 116, 0.1);
    color: var(--lux-green);
}

.analysis-section .secondary-button {
    border-color: rgba(235, 97, 10, 0.4);
    background: #171611;
    color: #fff4df;
}

/* Lot verification: distinct emerald trust block */
.lot-section {
    background:
        linear-gradient(180deg, rgba(245, 239, 228, 0) 0%, rgba(223, 236, 225, 0.7) 48%, rgba(245, 239, 228, 0) 100%);
}

.lot-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(211, 236, 223, 0.22);
    background:
        radial-gradient(circle at 12% 14%, rgba(214, 244, 225, 0.34), transparent 18rem),
        radial-gradient(circle at 86% 82%, rgba(235, 97, 10, 0.2), transparent 17rem),
        linear-gradient(135deg, #0e3029 0%, #16483d 52%, #0a211d 100%);
    box-shadow: 0 34px 100px rgba(14, 48, 41, 0.24);
    color: #effaf1;
}

.lot-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    pointer-events: none;
    border: 1px solid rgba(239, 250, 241, 0.1);
    border-radius: 16px;
}

.lot-card > * {
    position: relative;
    z-index: 1;
}

.lot-card .eyebrow {
    color: #bde8cd;
}

.lot-card h2,
.lot-card label {
    color: #f5fff6;
}

.lot-card p {
    color: rgba(245, 255, 246, 0.72);
}

.lot-form {
    border: 1px solid rgba(245, 255, 246, 0.14);
    border-radius: 22px;
    background: rgba(245, 255, 246, 0.08);
    padding: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lot-card input {
    border-color: rgba(245, 255, 246, 0.18);
    background: rgba(245, 255, 246, 0.1);
    color: #f5fff6;
}

.lot-card input::placeholder {
    color: rgba(245, 255, 246, 0.48);
}

.lot-card input:focus {
    border-color: rgba(189, 232, 205, 0.78);
    box-shadow: 0 0 0 5px rgba(189, 232, 205, 0.12);
}

.lot-form button {
    background: linear-gradient(135deg, #ff8a32, var(--lux-orange-dark));
    color: #fffaf1;
    box-shadow: 0 16px 34px rgba(10, 33, 29, 0.28);
}

.qr-corner-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    grid-column: 2;
    justify-self: end;
    width: min(100%, 380px);
    margin-top: -10px;
    border: 1px solid rgba(245, 255, 246, 0.16);
    border-radius: 20px;
    background: rgba(245, 255, 246, 0.1);
    padding: 14px;
    color: #f5fff6;
}

.qr-corner-card span {
    display: block;
    color: #bde8cd;
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.qr-corner-card strong {
    display: block;
    margin-top: 4px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 560;
    letter-spacing: -0.035em;
}

.qr-corner-card canvas {
    width: 104px;
    height: 104px;
    border: 7px solid #fffaf1;
    border-radius: 16px;
    background: #fffaf1;
    box-shadow: 0 16px 34px rgba(10, 33, 29, 0.22);
}

.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 95;
    display: grid;
    gap: 10px;
}

.floating-contact-button {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(255, 250, 241, 0.26);
    border-radius: 999px;
    color: #fffaf1;
    box-shadow: 0 18px 42px rgba(10, 33, 29, 0.24);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.floating-contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(10, 33, 29, 0.32);
}

.floating-contact-button svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.floating-contact-button.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c55);
}

.floating-contact-button.phone {
    background: linear-gradient(135deg, #ff8a32, var(--lux-orange-dark));
    color: #fffaf1;
}

/* Full-bleed lot verification band */
.lot-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 11% 18%, rgba(214, 244, 225, 0.28), transparent 23rem),
        radial-gradient(circle at 88% 82%, rgba(235, 97, 10, 0.18), transparent 22rem),
        linear-gradient(135deg, #082c2d 0%, var(--lux-green-dark) 54%, #061c1c 100%);
}

.lot-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(245, 255, 246, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(245, 255, 246, 0.035) 1px, transparent 1px);
    background-size: 68px 68px;
}

.lot-section .section-shell {
    position: relative;
    z-index: 1;
}

.lot-card {
    width: min(100% - 56px, 1220px);
    border-color: rgba(245, 255, 246, 0.16);
    background: rgba(245, 255, 246, 0.045);
    box-shadow: none;
    backdrop-filter: none;
}

@media (max-width: 760px) {
    .lot-card {
        width: min(100% - 24px, 1220px);
    }

    .qr-corner-card {
        grid-column: 1;
        justify-self: stretch;
        width: 100%;
        margin-top: 0;
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .qr-corner-card canvas {
        width: 96px;
        height: 96px;
    }

    .floating-contact {
        right: 14px;
        bottom: 96px;
    }

    .floating-contact-button {
        width: 48px;
        height: 48px;
    }
}

/* Full-bleed hero refinement */
.hero-section {
    width: 100%;
    margin: 18px 0 0;
    border-radius: 0;
    padding: 76px 0 72px;
}

.hero-section .section-shell {
    width: min(100% - 64px, 1440px);
}

@media (max-width: 1100px) {
    .hero-section {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .hero-section {
        width: 100%;
        margin-top: 10px;
        border-radius: 0;
        padding: 34px 0 28px;
    }

    .hero-section .section-shell {
        width: min(100% - 24px, 1220px);
    }
}

/* Product detail and cart pages */
.product-detail-page,
.cart-page {
    padding: 42px 0 84px;
}

.detail-hero,
.cart-shell {
    display: grid;
    gap: 28px;
    align-items: start;
}

.detail-hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.detail-gallery,
.detail-buy-card,
.cart-summary-card,
.cart-empty-card,
.cart-checkout-card {
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.detail-gallery {
    display: grid;
    min-height: 620px;
    place-items: center;
    overflow: hidden;
    padding: 28px;
    background:
        radial-gradient(circle at 50% 28%, rgba(217, 238, 232, 0.96), transparent 24rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(251, 246, 232, 0.84));
}

.detail-gallery img {
    width: min(100%, 640px);
    max-height: 570px;
    object-fit: contain;
    filter: drop-shadow(0 32px 52px rgba(32, 49, 45, 0.15));
}

.detail-buy-card {
    position: sticky;
    top: 112px;
    padding: 30px;
}

.detail-buy-card h1,
.cart-empty-card h1,
.cart-line h1 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 4.1rem);
    font-weight: 520;
    letter-spacing: -0.07em;
    line-height: 0.98;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.breadcrumb a {
    color: color-mix(in srgb, var(--accent), #5d4318 32%);
}

.breadcrumb strong {
    color: var(--ink);
    font-weight: 800;
}

.detail-lead {
    color: var(--muted);
    font-size: 1.04rem;
}

.detail-price-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: baseline;
    margin: 22px 0;
}

.detail-price-row strong {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 620;
    letter-spacing: -0.05em;
}

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

.compact-list {
    margin: 18px 0 22px;
}

.cart-add-form {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.cart-add-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 700;
}

.cart-add-form input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    padding: 14px 16px;
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.detail-analysis {
    margin-top: 42px;
}

.cart-shell {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.cart-empty-card {
    grid-column: 1 / -1;
    padding: 54px;
    text-align: center;
}

.cart-empty-card p {
    max-width: 520px;
    margin: 16px auto 24px;
    color: var(--muted);
}

.cart-empty-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cart-empty-product {
    display: grid;
    width: min(100%, 420px);
    gap: 6px;
    margin: 28px auto 0;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 250, 241, 0.8);
    padding: 18px 20px;
    color: var(--ink);
}

.cart-empty-product span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-summary-card {
    padding: 26px;
}

.cart-section-head {
    margin-bottom: 22px;
}

.cart-section-head h1 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 540;
    letter-spacing: -0.055em;
    line-height: 1;
}

.cart-section-head p {
    margin: 10px 0 0;
    color: var(--muted);
}

.cart-item-list {
    display: grid;
    gap: 14px;
}

.cart-line {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr) minmax(170px, auto) minmax(120px, auto);
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 250, 241, 0.72);
    padding: 14px;
}

.cart-line-media {
    display: grid;
    width: 104px;
    height: 118px;
    place-items: center;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(32, 49, 45, 0.12);
}

.cart-line-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-line-media span {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
}

.cart-line h2 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-weight: 620;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.cart-line p {
    margin: 10px 0;
    color: var(--muted);
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.cart-line a {
    color: color-mix(in srgb, var(--accent), #5d4318 35%);
    font-weight: 800;
}

.cart-line-controls {
    display: grid;
    gap: 8px;
}

.cart-line-controls form {
    display: flex;
    align-items: end;
    gap: 8px;
}

.cart-line-controls label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 820;
}

.cart-line-controls input {
    width: 78px;
    border: 1px solid color-mix(in srgb, var(--primary), #ffffff 68%);
    border-radius: 16px;
    background: #fff;
    color: var(--ink);
    padding: 10px 12px;
    text-align: center;
    font-weight: 850;
}

.cart-remove-button {
    width: fit-content;
    border: 0;
    background: transparent;
    color: color-mix(in srgb, var(--accent), #7a2200 12%);
    padding: 0;
    font-weight: 850;
    cursor: pointer;
}

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

.cart-line-price span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 820;
    text-transform: uppercase;
}

.cart-line-price strong {
    color: var(--ink);
    font-size: 0.94rem;
}

.cart-line-price em {
    color: var(--primary);
    font-style: normal;
    font-size: 1.12rem;
    font-weight: 900;
}

.cart-order-card {
    border: 1px solid color-mix(in srgb, var(--primary), #ffffff 72%);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(4, 114, 116, 0.1), rgba(235, 97, 10, 0.08));
    padding: 20px;
}

.cart-totals {
    display: grid;
    gap: 10px;
    margin: 12px 0 0;
}

.cart-totals div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

.cart-totals dt {
    color: var(--muted);
}

.cart-totals dd {
    margin: 0;
    color: var(--ink);
    font-weight: 850;
}

.cart-totals .grand {
    border-top-color: color-mix(in srgb, var(--primary), #ffffff 58%);
}

.cart-totals .grand dd {
    color: var(--primary);
    font-size: 1.24rem;
}

.cart-payment-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.cart-payment-trust span {
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    padding: 8px 10px;
    font-size: 0.78rem;
    font-weight: 820;
}

.cart-toast {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 120;
    max-width: min(360px, calc(100vw - 32px));
    border: 1px solid color-mix(in srgb, var(--primary), #ffffff 62%);
    border-radius: 20px;
    background: color-mix(in srgb, var(--primary), #08231d 22%);
    color: #fff;
    padding: 14px 18px;
    font-weight: 850;
    box-shadow: 0 22px 54px rgba(4, 37, 31, 0.24);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 220ms ease, transform 220ms ease;
}

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

@media (max-width: 980px) {
    .detail-hero,
    .cart-shell,
    .detail-info-grid {
        grid-template-columns: 1fr;
    }

    .detail-gallery {
        min-height: auto;
    }

    .detail-buy-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .product-detail-page,
    .cart-page {
        padding-top: 24px;
    }

    .detail-buy-card,
    .cart-summary-card,
    .cart-empty-card,
    .cart-checkout-card {
        border-radius: 26px;
        padding: 20px;
    }

    .cart-line {
        grid-template-columns: 1fr;
    }

    .cart-line-media {
        width: 100%;
        height: 220px;
    }

    .cart-line-controls form {
        flex-wrap: wrap;
    }

    .cart-line-price {
        justify-items: start;
        text-align: left;
    }
}

.video-feature-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(245, 158, 11, 0.28), transparent 32%),
        radial-gradient(circle at 88% 26%, rgba(134, 168, 164, 0.24), transparent 34%),
        linear-gradient(135deg, #101b18 0%, #1e2d27 48%, #f3ead8 160%);
    color: #fffaf1;
}

.video-feature-section::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 250, 241, 0.12);
    border-radius: 42px;
    pointer-events: none;
}

.video-feature-shell {
    position: relative;
    display: grid;
    gap: 34px;
}

.video-feature-heading {
    display: grid;
    max-width: 760px;
    gap: 12px;
}

.video-feature-heading h2 {
    margin: 0;
    color: #fffaf1;
    font-family: var(--heading-font, "Manrope"), system-ui, sans-serif;
    font-size: clamp(2rem, 4vw, 4.6rem);
    font-weight: 520;
    letter-spacing: -0.065em;
    line-height: 0.96;
}

.video-feature-heading p:last-child {
    margin: 0;
    color: rgba(255, 250, 241, 0.72);
    max-width: 620px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.video-stage {
    display: grid;
}

.video-panel {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
    gap: 26px;
    align-items: stretch;
    opacity: 0;
    transform: translateY(12px) scale(0.985);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.video-panel.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.video-frame {
    overflow: hidden;
    min-height: 480px;
    border: 1px solid rgba(255, 250, 241, 0.18);
    border-radius: 34px;
    background: #050807;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.video-frame iframe,
.video-frame video {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    object-fit: cover;
}

.video-panel-copy {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 18px;
    border: 1px solid rgba(255, 250, 241, 0.16);
    border-radius: 34px;
    background: rgba(255, 250, 241, 0.08);
    padding: clamp(24px, 3vw, 42px);
    backdrop-filter: blur(18px);
}

.video-panel-copy > span {
    width: fit-content;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.2);
    color: #ffcf7a;
    padding: 8px 12px;
    font-weight: 840;
    letter-spacing: 0.08em;
}

.video-panel-copy h3 {
    margin: 0;
    color: #fffaf1;
    font-family: var(--heading-font, "Manrope"), system-ui, sans-serif;
    font-size: clamp(1.55rem, 2.5vw, 3rem);
    font-weight: 560;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.video-panel-copy p {
    margin: 0;
    color: rgba(255, 250, 241, 0.72);
    line-height: 1.75;
}

.video-mini-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.video-mini-points em {
    border: 1px solid rgba(255, 250, 241, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 250, 241, 0.78);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 760;
    padding: 9px 12px;
}

.video-rail {
    display: grid;
    grid-auto-columns: minmax(210px, 1fr);
    grid-auto-flow: column;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 2px 14px;
    scrollbar-width: thin;
}

.video-thumb {
    display: grid;
    min-height: 132px;
    gap: 16px;
    align-content: space-between;
    border: 1px solid rgba(255, 250, 241, 0.14);
    border-radius: 24px;
    background: rgba(255, 250, 241, 0.08);
    color: #fffaf1;
    padding: 18px;
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.video-thumb:hover,
.video-thumb.is-active {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.62);
    background: rgba(245, 158, 11, 0.18);
}

.video-thumb span {
    color: #ffcf7a;
    font-size: 0.78rem;
    font-weight: 860;
    letter-spacing: 0.12em;
}

.video-thumb strong {
    color: #fffaf1;
    font-size: 0.98rem;
    line-height: 1.25;
}

@media (max-width: 980px) {
    .video-feature-section {
        padding: 72px 0;
    }

    .video-panel {
        grid-template-columns: 1fr;
    }

    .video-frame,
    .video-frame iframe,
    .video-frame video {
        min-height: 340px;
    }
}

@media (max-width: 640px) {
    .video-feature-section::before {
        inset: 10px;
        border-radius: 28px;
    }

    .video-frame,
    .video-panel-copy {
        border-radius: 24px;
    }

    .video-frame,
    .video-frame iframe,
    .video-frame video {
        min-height: 260px;
    }

    .video-rail {
        grid-auto-columns: minmax(180px, 80vw);
    }
}

/* Video carousel v2: cover cards with modal player */
.video-feature-section {
    padding: 86px 0;
    background:
        radial-gradient(circle at 11% 18%, rgba(214, 244, 225, 0.3), transparent 24rem),
        radial-gradient(circle at 88% 82%, rgba(235, 97, 10, 0.16), transparent 22rem),
        linear-gradient(135deg, #0e3029 0%, #16483d 54%, #0a211d 100%);
}

.video-feature-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(245, 255, 246, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(245, 255, 246, 0.035) 1px, transparent 1px);
    background-size: 68px 68px;
}

.video-feature-shell {
    z-index: 1;
    width: min(100% - 72px, 1500px);
    overflow: visible;
}

.video-feature-heading {
    max-width: none;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
    align-items: end;
}

.video-feature-heading .eyebrow {
    grid-column: 1 / -1;
    color: #bde8cd;
}

.video-feature-heading p:last-child {
    justify-self: end;
    color: rgba(245, 255, 246, 0.74);
}

.video-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 22px;
}

.video-category-tabs button {
    border: 1px solid rgba(245, 255, 246, 0.18);
    border-radius: 999px;
    background: rgba(245, 255, 246, 0.08);
    color: rgba(245, 255, 246, 0.82);
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 760;
    padding: 10px 16px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.video-category-tabs button:hover,
.video-category-tabs button:focus-visible,
.video-category-tabs button.is-active {
    transform: translateY(-2px);
    border-color: rgba(235, 97, 10, 0.72);
    background: #fffaf1;
    color: #0e3029;
    outline: none;
}

.video-carousel-wrap {
    position: relative;
    min-width: 0;
}

.video-card-carousel {
    --video-gap: 18px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--video-gap) * 5)) / 6);
    gap: var(--video-gap);
    min-width: 0;
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 6px 0 16px;
    scroll-behavior: smooth;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.video-card-carousel::-webkit-scrollbar {
    display: none;
}

.video-nav-button {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(245, 255, 246, 0.22);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.94);
    color: #0e3029;
    cursor: pointer;
    box-shadow: 0 18px 48px rgba(4, 18, 15, 0.26);
    transform: translateY(-50%);
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.video-nav-button.prev {
    left: -18px;
}

.video-nav-button.next {
    right: -18px;
}

.video-nav-button:hover,
.video-nav-button:focus-visible {
    background: var(--lux-orange);
    color: #fffaf1;
    transform: translateY(-50%) scale(1.06);
    outline: none;
}

.video-nav-button:disabled {
    cursor: default;
    opacity: 0.32;
    transform: translateY(-50%) scale(0.96);
}

.video-nav-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.video-cover-card {
    min-width: 0;
    scroll-snap-align: start;
}

.video-cover-button {
    display: grid;
    width: 100%;
    border: 1px solid rgba(245, 255, 246, 0.15);
    border-radius: 24px;
    background: rgba(245, 255, 246, 0.07);
    color: #f5fff6;
    padding: 8px;
    text-align: left;
    box-shadow: 0 24px 70px rgba(4, 18, 15, 0.16);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.video-cover-button:hover,
.video-cover-button:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(235, 97, 10, 0.72);
    background: rgba(245, 255, 246, 0.11);
    box-shadow: 0 30px 86px rgba(4, 18, 15, 0.26);
    outline: none;
}

.video-cover-media {
    position: relative;
    display: grid;
    overflow: hidden;
    aspect-ratio: 9 / 12.8;
    border-radius: 18px;
    background:
        radial-gradient(circle at 72% 24%, rgba(245, 255, 246, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(10, 33, 29, 0.94), rgba(22, 72, 61, 0.84));
}

.video-cover-media img,
.video-cover-fallback {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
}

.video-cover-media img {
    object-fit: cover;
    opacity: 1;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.video-cover-button:hover .video-cover-media img {
    transform: scale(1.04);
    filter: saturate(1.08) contrast(1.02);
}

.video-cover-fallback {
    display: grid;
    place-items: center;
    color: rgba(245, 255, 246, 0.58);
    font-size: 3.4rem;
    font-weight: 780;
    letter-spacing: -0.06em;
}

.video-cover-media::after {
    content: "";
    grid-area: 1 / 1;
    background:
        linear-gradient(180deg, rgba(4, 18, 15, 0.02) 0%, rgba(4, 18, 15, 0.02) 34%, rgba(4, 18, 15, 0.72) 100%);
}

.video-play-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 6px)) rotate(135deg);
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 56% 56% 56% 18%;
    background: rgba(255, 250, 241, 0.88);
    color: #0e3029;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
    z-index: 1;
    transition: transform 0.22s ease, background 0.22s ease;
}

.video-cover-button:hover .video-play-mark {
    transform: translate(-50%, calc(-50% + 6px)) rotate(135deg) scale(1.08);
    background: var(--lux-orange);
    color: #fffaf1;
}

.video-play-mark svg {
    width: 23px;
    height: 23px;
    margin-left: 3px;
    fill: currentColor;
    transform: rotate(-135deg);
}

.video-duration-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    border: 1px solid rgba(245, 255, 246, 0.22);
    border-radius: 999px;
    background: rgba(14, 48, 41, 0.72);
    color: #f5fff6;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 8px 10px;
}

.video-cover-title {
    position: absolute;
    right: 14px;
    bottom: 18px;
    left: 14px;
    display: grid;
    gap: 7px;
    z-index: 1;
    padding: 0;
}

.video-cover-title small {
    color: #ff9a4d;
    font-size: 0.78rem;
    font-weight: 860;
    letter-spacing: 0.14em;
}

.video-cover-title strong {
    color: #f5fff6;
    font-family: var(--heading-font, "Manrope"), system-ui, sans-serif;
    font-size: clamp(0.95rem, 1vw, 1.16rem);
    font-weight: 680;
    letter-spacing: -0.035em;
    line-height: 1.08;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
}

.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    place-items: center;
    padding: 24px;
}

.video-lightbox.is-open {
    display: grid;
}

.video-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 18, 15, 0.76);
    backdrop-filter: blur(14px);
}

.video-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    overflow: hidden;
    border: 1px solid rgba(245, 255, 246, 0.18);
    border-radius: 30px;
    background: #0a211d;
    color: #f5fff6;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
}

.video-lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(245, 255, 246, 0.92);
    color: #0a211d;
    font-size: 1.8rem;
    line-height: 1;
}

.video-lightbox-content {
    display: grid;
}

.video-lightbox-player {
    aspect-ratio: 16 / 9;
    background: #020706;
}

.video-lightbox-player iframe,
.video-lightbox-player video {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.video-lightbox-copy {
    display: grid;
    gap: 8px;
    padding: 22px 26px 26px;
}

.video-lightbox-copy span {
    color: #bde8cd;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.video-lightbox-copy h3,
.video-lightbox-copy p {
    margin: 0;
}

.video-lightbox-copy h3 {
    color: #f5fff6;
    font-size: clamp(1.4rem, 2vw, 2.1rem);
    letter-spacing: -0.04em;
}

.video-lightbox-copy p {
    color: rgba(245, 255, 246, 0.7);
}

body.video-locked {
    overflow: hidden;
}

@media (max-width: 980px) {
    .video-feature-heading {
        grid-template-columns: 1fr;
    }

    .video-feature-heading p:last-child {
        justify-self: start;
    }

    .video-card-carousel {
        grid-auto-columns: minmax(280px, 72vw);
        scroll-snap-type: x proximity;
    }

    .video-nav-button.prev {
        left: 6px;
    }

    .video-nav-button.next {
        right: 6px;
    }
}

@media (max-width: 760px) {
    .video-feature-shell {
        width: min(100% - 28px, 1500px);
    }
}

@media (max-width: 640px) {
    .video-feature-section {
        padding: 58px 0;
    }

    .video-cover-button {
        border-radius: 22px;
    }

    .video-cover-media {
        border-radius: 17px;
        aspect-ratio: 9 / 15;
    }

    .video-play-mark {
        width: 58px;
        height: 58px;
    }

    .video-category-tabs {
        gap: 8px;
    }

    .video-category-tabs button {
        padding: 9px 12px;
        font-size: 0.82rem;
    }

    .video-lightbox {
        padding: 12px;
    }

    .video-lightbox-dialog {
        border-radius: 22px;
    }
}

/* Final mobile hero guard: keep the full-bleed desktop hero from collapsing into two columns. */
@media (max-width: 760px) {
    .premium-hero.hero-section {
        padding: 28px 0 34px;
    }

    .premium-hero .hero-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 22px;
        align-items: start;
        min-height: auto;
    }

    .premium-hero .hero-copy,
    .premium-hero .hero-visual {
        width: 100%;
        min-width: 0;
    }

    .premium-hero .hero-copy h1 {
        max-width: none;
        font-size: clamp(2.6rem, 12vw, 3.55rem);
        line-height: 0.98;
        overflow-wrap: normal;
        word-break: normal;
    }

    .premium-hero .hero-lead {
        max-width: none;
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .premium-hero .hero-visual {
        min-height: clamp(245px, 64vw, 330px);
    }

    .premium-hero .model-card {
        inset: 0;
        border-radius: 22px;
    }

    .premium-hero .hero-packshot-card {
        right: 12px;
        bottom: 12px;
        width: min(34vw, 128px);
        border-radius: 18px;
        padding: 7px;
    }

    .premium-hero .hero-packshot-card img {
        border-radius: 14px;
    }

    .premium-hero .hero-packshot-card figcaption {
        display: none;
    }
}

@media (max-width: 760px) {
    .premium-site-header {
        min-height: 62px;
    }

    .premium-site-header .brand-mark-wide {
        width: min(54vw, 168px);
        height: 44px;
    }

    .premium-site-header .brand-logo-image {
        width: auto;
        max-width: 100%;
        height: 44px;
        max-height: 44px;
    }
}

/* Product catalogue and advanced detail */
.product-listing-page {
    padding: 52px 0 86px;
}

.catalog-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    gap: 24px;
    align-items: end;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 36px;
    background:
        radial-gradient(circle at 88% 16%, rgba(217, 238, 232, 0.88), transparent 22rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(251, 246, 232, 0.76));
    box-shadow: var(--shadow);
    padding: clamp(26px, 4vw, 54px);
}

.catalog-hero h1 {
    max-width: 820px;
    font-size: clamp(2.4rem, 4.6vw, 5rem);
}

.catalog-premium-showcase {
    position: relative;
    overflow: hidden;
    min-height: 360px;
}

.catalog-premium-showcase::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: min(420px, 36vw);
    aspect-ratio: 1;
    border-radius: 999px;
    background:
        radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.94), transparent 28%),
        radial-gradient(circle, rgba(217, 238, 232, 0.9), rgba(232, 184, 109, 0.22) 68%, transparent 70%);
    opacity: 0.78;
    pointer-events: none;
}

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

.catalog-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.catalog-trust-strip div {
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 38px rgba(32, 49, 45, 0.07);
    padding: 17px 18px;
}

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

.catalog-trust-strip strong {
    color: var(--ink);
    font-size: 0.98rem;
}

.catalog-trust-strip span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.88rem;
}

.catalog-social-card,
.product-detail-social {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 18px 42px rgba(32, 49, 45, 0.08);
    padding: 20px;
}

.catalog-social-card > span,
.product-detail-social > span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.catalog-social-card strong {
    display: block;
    margin: 5px 0 14px;
    color: var(--ink);
    font-size: 1.2rem;
}

.social-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.social-pill {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(134, 168, 164, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--ink);
    padding: 8px 13px;
    font-size: 0.86rem;
    font-weight: 780;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 184, 109, 0.6);
    background: var(--cream);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.catalog-product-card,
.catalog-empty-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.catalog-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(134, 168, 164, 0.44);
    box-shadow: var(--shadow-strong);
}

.catalog-product-media {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 12px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 78% 18%, rgba(217, 238, 232, 0.9), transparent 14rem),
        linear-gradient(135deg, #fff, #f6efe2);
}

.catalog-product-media img {
    display: block;
    width: 100%;
    aspect-ratio: 1.06;
    object-fit: contain;
    padding: 18px;
    transition: transform 240ms ease;
}

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

.catalog-product-media span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    border-radius: 999px;
    background: rgba(32, 49, 45, 0.78);
    color: #fffaf1;
    padding: 7px 11px;
    font-size: 0.78rem;
    font-weight: 780;
}

.catalog-product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.catalog-product-badges em {
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #246655;
    font-size: 0.74rem;
    font-style: normal;
    font-weight: 820;
    padding: 7px 10px;
    backdrop-filter: blur(12px);
}

.catalog-product-copy,
.catalog-empty-card {
    padding: 18px 22px 24px;
}

.catalog-product-copy h2 {
    font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.catalog-product-copy > p:not(.eyebrow) {
    display: -webkit-box;
    overflow: hidden;
    min-height: 3.2rem;
    color: var(--muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.catalog-product-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 9px;
    margin: 18px 0;
}

.catalog-product-meta strong {
    color: var(--ink);
    font-size: 1.42rem;
    font-weight: 720;
    letter-spacing: -0.04em;
}

.catalog-product-meta span {
    color: var(--muted);
    text-decoration: line-through;
}

.catalog-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.advanced-detail-gallery {
    display: grid;
    gap: 14px;
    align-content: start;
}

.detail-gallery-main {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 34px;
    background:
        radial-gradient(circle at 78% 18%, rgba(217, 238, 232, 0.9), transparent 22rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(251, 246, 232, 0.82));
    box-shadow: var(--shadow);
}

.detail-gallery-main img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.detail-gallery-main figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    padding: 9px 13px;
    font-size: 0.84rem;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.detail-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.detail-gallery-thumb {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    padding: 4px;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.detail-gallery-thumb.is-active,
.detail-gallery-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 184, 109, 0.7);
    box-shadow: 0 14px 32px rgba(32, 49, 45, 0.1);
}

.detail-gallery-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 14px;
    object-fit: cover;
}

.product-detail-social {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.detail-commerce-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
    gap: clamp(28px, 4vw, 58px);
    align-items: start;
}

.detail-commerce-layout .detail-gallery {
    min-height: 0;
    border-color: rgba(32, 49, 45, 0.08);
    background: #fff;
    box-shadow: 0 28px 90px rgba(32, 49, 45, 0.08);
}

.detail-commerce-layout .detail-buy-card {
    border-color: rgba(32, 49, 45, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 74px rgba(32, 49, 45, 0.09);
}

.detail-commerce-layout .detail-gallery-main {
    min-height: clamp(460px, 54vw, 690px);
    background:
        radial-gradient(circle at 56% 46%, rgba(217, 238, 232, 0.52), transparent 22rem),
        linear-gradient(135deg, #fff 0%, #fff 52%, #f7fbf8 100%);
    box-shadow: none;
}

.detail-commerce-layout .detail-gallery-main img {
    min-height: clamp(460px, 54vw, 690px);
    object-fit: contain;
    padding: clamp(24px, 4vw, 54px);
    filter: drop-shadow(0 34px 52px rgba(32, 49, 45, 0.14));
}

.detail-stock-pill {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    width: fit-content;
    margin: 0 0 18px;
    border-radius: 999px;
    background: rgba(217, 238, 232, 0.58);
    color: #25765a;
    padding: 9px 13px;
    font-size: 0.9rem;
    font-weight: 820;
}

.detail-stock-pill span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #28b474;
    box-shadow: 0 0 0 5px rgba(40, 180, 116, 0.14);
}

.detail-stock-pill em {
    color: var(--muted);
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 760;
}

.detail-benefit-list,
.detail-service-list {
    display: grid;
    gap: 12px;
    margin: 20px 0;
    padding: 0;
}

.detail-benefit-list {
    list-style: none;
}

.detail-benefit-list li,
.detail-service-list div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    color: var(--ink);
    font-size: 0.98rem;
}

.detail-benefit-list li::before {
    content: "✓";
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    background: rgba(217, 238, 232, 0.78);
    color: #25765a;
    font-size: 0.76rem;
    font-weight: 900;
}

.detail-commerce-layout .cart-add-form {
    grid-template-columns: minmax(132px, 0.32fr) minmax(0, 1fr);
    gap: 14px;
    align-items: end;
    margin-top: 22px;
}

.detail-commerce-layout .cart-add-form .primary-button {
    min-height: 56px;
}

.detail-quantity-field {
    position: relative;
    min-height: 72px;
    border: 1px solid rgba(4, 114, 116, 0.2);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 241, 0.82));
    color: rgba(4, 47, 49, 0.68);
    padding: 9px 12px 12px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58), 0 12px 28px rgba(4, 47, 49, 0.05);
}

.detail-quantity-field input {
    min-height: 34px;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #042f31;
    text-align: center;
    padding: 0;
    font-size: 1.08rem;
    font-weight: 700;
}

.detail-quantity-field input:focus {
    outline: 2px solid rgba(235, 97, 10, 0.28);
    outline-offset: 4px;
    border-radius: 12px;
}

.detail-commerce-layout .cart-add-form + .secondary-button {
    margin-top: 12px;
    min-height: 52px;
    border-color: rgba(4, 114, 116, 0.2);
    background: rgba(255, 250, 241, 0.84);
    box-shadow: none;
}

.detail-service-list {
    border-top: 1px solid var(--line);
    margin-top: 20px;
    padding-top: 18px;
}

.detail-service-list span {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    background: var(--mint);
    color: #216d58;
    font-size: 0.72rem;
    font-weight: 900;
}

.detail-service-list strong {
    color: var(--ink);
    font-weight: 720;
}

@media (max-width: 1180px) {
    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .catalog-hero,
    .catalog-grid,
    .catalog-trust-strip {
        grid-template-columns: 1fr;
    }

    .catalog-hero {
        border-radius: 28px;
        padding: 24px;
    }

    .product-listing-page {
        padding-top: 26px;
    }

    .detail-gallery-main,
    .detail-gallery-main img {
        min-height: 320px;
    }

    .detail-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .detail-commerce-layout .cart-add-form {
        grid-template-columns: 1fr;
    }

    .detail-commerce-layout .detail-gallery-main,
    .detail-commerce-layout .detail-gallery-main img {
        min-height: 340px;
    }
}
/* Category and menu management */
.site-nav-group {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.site-nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 30;
    min-width: 220px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    background: rgba(20, 32, 26, .94);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .18s ease, transform .18s ease;
    backdrop-filter: blur(18px);
}

.site-nav-group:hover .site-nav-dropdown,
.site-nav-group:focus-within .site-nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.site-nav-dropdown a {
    display: block;
    margin: 0;
    padding: 10px 12px;
    border-radius: 14px;
    color: #fffaf0;
    white-space: nowrap;
}

.site-nav-dropdown a:hover {
    background: rgba(255, 255, 255, .10);
}

.catalog-category-filter {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(28, 72, 54, .16);
    border-radius: 32px;
    background:
        radial-gradient(circle at 12% 20%, rgba(220, 171, 69, .18), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(245, 240, 229, .9));
    box-shadow: 0 20px 50px rgba(30, 48, 38, .08);
}

.catalog-category-filter h2 {
    margin: 4px 0 8px;
}

.catalog-category-filter p {
    margin: 0;
    color: rgba(31, 42, 36, .68);
}

.category-chip-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(31, 42, 36, .13);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: #1f2a24;
    font-weight: 750;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.category-chip.child {
    font-size: .92rem;
    opacity: .9;
}

.category-chip:hover {
    border-color: rgba(220, 171, 69, .58);
    transform: translateY(-1px);
}

.category-chip.is-active {
    border-color: rgba(31, 42, 36, .88);
    background: #1f2a24;
    color: #fffaf0;
}

.catalog-card-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.catalog-card-categories a {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(31, 42, 36, .08);
    color: #1f2a24;
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
}

.category-hero-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 32px;
    min-height: 280px;
    background: rgba(255, 255, 255, .72);
}

.category-hero-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .site-nav.is-open .site-nav-group {
        display: block;
    }

    .site-nav.is-open .site-nav-dropdown {
        position: static;
        min-width: 0;
        margin: 6px 0 10px;
        border-radius: 16px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

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

    .category-chip-row {
        justify-content: flex-start;
    }
}

/* Theme 2B: bold ShilajitKO brand system */
:root {
    --brand-green: #047274;
    --brand-green-dark: #022f31;
    --brand-green-deep: #011f21;
    --brand-orange: #EB610A;
    --brand-orange-hot: #ff7f24;
    --brand-orange-dark: #b54808;
    --brand-cream: #fff7ed;
    --brand-shadow-green: rgba(4, 114, 116, 0.28);
    --brand-shadow-orange: rgba(235, 97, 10, 0.28);
}

body {
    background:
        radial-gradient(circle at 10% 5%, rgba(4, 114, 116, 0.18), transparent 30rem),
        radial-gradient(circle at 88% 8%, rgba(235, 97, 10, 0.14), transparent 28rem),
        linear-gradient(135deg, #f6f1e7 0%, #fff7ed 38%, #eef7f2 100%);
}

.site-header {
    overflow: hidden;
    border-color: rgba(4, 114, 116, 0.24);
    background:
        linear-gradient(90deg, rgba(4, 114, 116, 0.12), rgba(255, 247, 237, 0.88) 42%, rgba(235, 97, 10, 0.13)),
        rgba(255, 250, 241, 0.92);
    box-shadow: 0 22px 64px rgba(4, 47, 49, 0.13);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.36) 44%, transparent 56% 100%);
    transform: translateX(-120%);
}

.brand-mark-wide {
    filter: drop-shadow(0 10px 22px rgba(4, 47, 49, 0.1));
}

.site-nav a {
    position: relative;
    overflow: hidden;
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 5px;
    left: 14px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-orange));
    opacity: 0;
    transform: scaleX(0.34);
    transform-origin: left;
    transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.primary-button,
.lot-form button {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, var(--brand-orange-hot), var(--brand-orange) 48%, var(--brand-orange-dark)),
        var(--brand-orange);
    box-shadow: 0 20px 44px var(--brand-shadow-orange), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    color: #fffaf1;
}

.primary-button::before,
.lot-form button::before {
    content: "";
    position: absolute;
    inset: -40% -70%;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 36%, rgba(255, 255, 255, 0.38) 48%, transparent 60%);
    transform: translateX(-60%);
}

.primary-button:hover,
.lot-form button:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 26px 58px rgba(235, 97, 10, 0.32);
}

.hero-section {
    border: 1px solid rgba(255, 247, 237, 0.12);
    background:
        radial-gradient(circle at 12% 78%, rgba(4, 114, 116, 0.5), transparent 25rem),
        radial-gradient(circle at 88% 20%, rgba(235, 97, 10, 0.38), transparent 26rem),
        linear-gradient(135deg, #011f21 0%, #063e40 48%, #16110c 100%);
    box-shadow: 0 34px 110px rgba(4, 47, 49, 0.3);
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 16px;
    pointer-events: none;
    border: 1px solid rgba(255, 247, 237, 0.09);
    border-radius: 26px;
    background:
        linear-gradient(90deg, transparent, rgba(235, 97, 10, 0.12), transparent),
        linear-gradient(180deg, transparent, rgba(4, 114, 116, 0.18));
    mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.2));
}

.hero-copy,
.hero-visual,
.hero-carousel-copy,
.hero-carousel-visual {
    position: relative;
    z-index: 1;
}

.hero-copy .eyebrow,
.hero-section .eyebrow {
    color: #ffb06e;
    text-shadow: 0 0 24px rgba(235, 97, 10, 0.36);
}

.hero-copy h1 {
    text-shadow: 0 24px 62px rgba(0, 0, 0, 0.3);
}

.hero-copy h1::after {
    width: min(210px, 42vw);
    height: 6px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-orange) 62%, #ffb06e);
}

.model-card,
.banner-image-card,
.product-image-card {
    border-color: rgba(255, 247, 237, 0.16);
    background:
        radial-gradient(circle at 18% 18%, rgba(4, 114, 116, 0.28), transparent 18rem),
        radial-gradient(circle at 84% 18%, rgba(235, 97, 10, 0.2), transparent 18rem),
        linear-gradient(145deg, rgba(2, 47, 49, 0.95), rgba(17, 14, 10, 0.96));
    box-shadow: 0 42px 120px rgba(0, 0, 0, 0.38);
}

.hero-packshot-card,
.mobile-buy-bar {
    border-color: rgba(235, 97, 10, 0.2);
    box-shadow: 0 24px 58px rgba(4, 47, 49, 0.2);
}

.trust-strip {
    background:
        linear-gradient(90deg, rgba(4, 114, 116, 0.08), transparent 28%, rgba(235, 97, 10, 0.08)),
        transparent;
}

.trust-grid {
    border-color: rgba(4, 114, 116, 0.24);
}

.trust-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(4, 114, 116, 0.16);
    border-radius: 24px;
    background: rgba(255, 250, 241, 0.42);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.trust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 16% 18%, rgba(235, 97, 10, 0.12), transparent 13rem);
    opacity: 0;
    transition: opacity 220ms ease;
}

.trust-card:hover {
    transform: translateY(-6px);
    border-color: rgba(235, 97, 10, 0.28);
    background: rgba(255, 247, 237, 0.8);
    box-shadow: 0 24px 62px rgba(4, 47, 49, 0.12);
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-card .trust-icon.large {
    background: linear-gradient(135deg, rgba(4, 114, 116, 0.14), rgba(235, 97, 10, 0.18));
    box-shadow: 0 16px 36px rgba(4, 47, 49, 0.11);
}

.trust-card .trust-icon svg {
    fill: var(--brand-green);
}

.product-info-card,
.usage-card,
.report-card,
.checkout-form,
.faq-grid details,
.journal-grid article,
.catalog-product-card,
.catalog-empty-card,
.catalog-social-card,
.product-detail-social,
.detail-commerce-layout .detail-buy-card,
.detail-commerce-layout .detail-gallery {
    border-color: rgba(4, 114, 116, 0.16);
    background:
        linear-gradient(145deg, rgba(255, 250, 241, 0.92), rgba(255, 247, 237, 0.74)),
        #fffaf1;
    box-shadow: 0 24px 70px rgba(4, 47, 49, 0.09);
}

.product-info-card:hover,
.usage-card:hover,
.report-card:hover,
.faq-grid details:hover,
.journal-grid article:hover,
.catalog-product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(235, 97, 10, 0.3);
    box-shadow: 0 34px 88px rgba(4, 47, 49, 0.14);
}

.product-360-card,
.analysis-section,
.video-feature-section,
.lot-section {
    isolation: isolate;
}

.product-360-card {
    background:
        radial-gradient(circle at 18% 16%, rgba(4, 114, 116, 0.46), transparent 16rem),
        radial-gradient(circle at 82% 26%, rgba(235, 97, 10, 0.32), transparent 16rem),
        linear-gradient(145deg, #011f21, #17110c);
    box-shadow: 0 34px 96px rgba(4, 47, 49, 0.24);
}

.analysis-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(235, 97, 10, 0.3), transparent 24rem),
        radial-gradient(circle at 88% 20%, rgba(4, 114, 116, 0.36), transparent 26rem),
        linear-gradient(135deg, #011f21 0%, #062f31 50%, #15110e 100%);
}

.lot-section {
    background:
        radial-gradient(circle at 14% 18%, rgba(235, 97, 10, 0.22), transparent 22rem),
        radial-gradient(circle at 84% 78%, rgba(4, 114, 116, 0.45), transparent 25rem),
        linear-gradient(135deg, #011f21 0%, #047274 54%, #021d1f 100%);
}

.lot-card {
    border-color: rgba(255, 247, 237, 0.2);
    background: rgba(1, 31, 33, 0.4);
}

.video-feature-section {
    background:
        radial-gradient(circle at 11% 18%, rgba(235, 97, 10, 0.24), transparent 24rem),
        radial-gradient(circle at 88% 82%, rgba(4, 114, 116, 0.42), transparent 24rem),
        linear-gradient(135deg, #011f21 0%, #047274 52%, #021d1f 100%);
}

.video-nav-button,
.video-play-mark {
    background: var(--brand-orange);
    color: #fffaf1;
}

.video-cover-button:hover,
.video-cover-button:focus-visible,
.video-category-tabs button:hover,
.video-category-tabs button:focus-visible,
.video-category-tabs button.is-active {
    border-color: rgba(235, 97, 10, 0.76);
}

.catalog-hero,
.catalog-category-filter {
    overflow: hidden;
    border-color: rgba(4, 114, 116, 0.18);
    background:
        radial-gradient(circle at 12% 16%, rgba(4, 114, 116, 0.2), transparent 22rem),
        radial-gradient(circle at 92% 18%, rgba(235, 97, 10, 0.16), transparent 20rem),
        linear-gradient(135deg, rgba(255, 250, 241, 0.95), rgba(239, 249, 243, 0.86));
    box-shadow: 0 28px 80px rgba(4, 47, 49, 0.11);
}

.catalog-premium-showcase::after {
    background:
        radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.94), transparent 28%),
        radial-gradient(circle, rgba(4, 114, 116, 0.22), rgba(235, 97, 10, 0.18) 68%, transparent 70%);
}

.catalog-product-media,
.detail-commerce-layout .detail-gallery-main {
    background:
        radial-gradient(circle at 20% 20%, rgba(4, 114, 116, 0.14), transparent 18rem),
        radial-gradient(circle at 88% 16%, rgba(235, 97, 10, 0.12), transparent 18rem),
        linear-gradient(135deg, #fffaf1, #f7fbf8);
}

.catalog-product-media span,
.category-chip.is-active,
.detail-stock-pill {
    background: var(--brand-green);
    color: #fffaf1;
}

.catalog-product-badges em,
.catalog-card-categories a {
    border: 1px solid rgba(4, 114, 116, 0.14);
    background: rgba(255, 247, 237, 0.88);
    color: var(--brand-green);
}

.social-pill:hover,
.category-chip:hover,
.detail-gallery-thumb.is-active,
.detail-gallery-thumb:hover {
    border-color: rgba(235, 97, 10, 0.7);
    background: var(--brand-orange-soft);
}

.quick-checkout-summary,
.site-footer {
    background:
        radial-gradient(circle at 16% 18%, rgba(4, 114, 116, 0.3), transparent 18rem),
        radial-gradient(circle at 84% 24%, rgba(235, 97, 10, 0.22), transparent 18rem),
        linear-gradient(135deg, #011f21, #17110c);
}

@keyframes shjHeaderSweep {
    0%, 58% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

@keyframes shjCtaShine {
    0%, 54% { transform: translateX(-60%); }
    100% { transform: translateX(60%); }
}

@keyframes shjSoftFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes shjGlowPulse {
    0%, 100% { box-shadow: 0 24px 70px rgba(4, 47, 49, 0.1); }
    50% { box-shadow: 0 30px 88px rgba(235, 97, 10, 0.16); }
}

@media (prefers-reduced-motion: no-preference) {
    .site-header::before {
        animation: shjHeaderSweep 7.5s ease-in-out infinite;
    }

    .primary-button::before,
    .lot-form button::before {
        animation: shjCtaShine 3.4s ease-in-out infinite;
    }

    .model-card,
    .product-360-card,
    .catalog-premium-showcase::after {
        animation: shjSoftFloat 7s ease-in-out infinite;
    }

    .catalog-product-card,
    .trust-card,
    .video-cover-button {
        animation: shjGlowPulse 8s ease-in-out infinite;
    }

    .catalog-product-card:nth-child(2n),
    .trust-card:nth-child(2n),
    .video-cover-card:nth-child(2n) .video-cover-button {
        animation-delay: 1.4s;
    }

    .catalog-product-card:nth-child(3n),
    .trust-card:nth-child(3n),
    .video-cover-card:nth-child(3n) .video-cover-button {
        animation-delay: 2.2s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header::before,
    .primary-button::before,
    .lot-form button::before,
    .model-card,
    .product-360-card,
    .catalog-premium-showcase::after,
    .catalog-product-card,
    .trust-card,
    .video-cover-button {
        animation: none !important;
    }
}

@media (max-width: 760px) {
    .hero-section::after {
        inset: 9px;
        border-radius: 19px;
    }

    .hero-copy h1::after {
        width: 138px;
        height: 4px;
        margin-top: 13px;
    }

    .trust-card {
        border-radius: 18px;
    }
}

/* Theme 2C: flatter brand pass */
.site-header::before,
.primary-button::before,
.lot-form button::before {
    display: none;
}

.site-header,
.primary-button,
.secondary-button,
.lot-form button,
.trust-card,
.catalog-product-card,
.video-cover-button,
.product-info-card,
.usage-card,
.report-card,
.faq-grid details,
.journal-grid article {
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.site-header {
    background: rgba(255, 250, 241, 0.94);
    box-shadow: 0 16px 38px rgba(4, 47, 49, 0.08);
}

.site-nav {
    background: rgba(255, 255, 255, 0.62);
}

.site-nav a::after {
    height: 1px;
    background: var(--brand-orange);
}

.primary-button,
.lot-form button,
.floating-contact-button.phone {
    background: var(--brand-orange);
    box-shadow: 0 12px 28px rgba(235, 97, 10, 0.18);
}

.primary-button:hover,
.lot-form button:hover,
.secondary-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(4, 47, 49, 0.12);
}

.hero-section {
    background: #023f40;
    box-shadow: 0 26px 72px rgba(4, 47, 49, 0.2);
}

.hero-section::after {
    display: none;
}

.hero-copy h1::after {
    height: 4px;
    background: var(--brand-orange);
    box-shadow: none;
}

.model-card,
.banner-image-card,
.product-image-card,
.product-360-card,
.quick-checkout-summary,
.site-footer {
    background: #022f31;
    box-shadow: 0 22px 64px rgba(4, 47, 49, 0.18);
}

.trust-strip,
.catalog-hero,
.catalog-category-filter {
    background: #fffaf1;
}

.trust-card,
.product-info-card,
.usage-card,
.report-card,
.checkout-form,
.faq-grid details,
.journal-grid article,
.catalog-product-card,
.catalog-empty-card,
.catalog-social-card,
.product-detail-social,
.detail-commerce-layout .detail-buy-card,
.detail-commerce-layout .detail-gallery {
    background: #fffaf1;
    box-shadow: 0 14px 34px rgba(4, 47, 49, 0.06);
}

.trust-card::before {
    display: none;
}

.trust-card:hover,
.product-info-card:hover,
.usage-card:hover,
.report-card:hover,
.faq-grid details:hover,
.journal-grid article:hover,
.catalog-product-card:hover,
.video-cover-button:hover,
.video-cover-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(4, 47, 49, 0.1);
}

.analysis-section,
.lot-section,
.video-feature-section {
    background: #023f40;
}

.lot-card {
    background: rgba(255, 250, 241, 0.06);
}

.catalog-product-media,
.detail-commerce-layout .detail-gallery-main {
    background: #f8fbf8;
}

.catalog-premium-showcase::after {
    opacity: 0.26;
    background: var(--brand-orange);
}

.video-nav-button,
.video-play-mark {
    background: var(--brand-orange);
}

@media (prefers-reduced-motion: no-preference) {
    .site-header::before,
    .primary-button::before,
    .lot-form button::before,
    .model-card,
    .product-360-card,
    .catalog-premium-showcase::after,
    .catalog-product-card,
    .trust-card,
    .video-cover-button {
        animation: none !important;
    }
}

/* Homepage commerce polish: clearer hero controls, sales trust strip and separated video section. */
.hero-carousel-controls {
    margin-top: -28px;
    padding-bottom: 54px;
}

.hero-carousel-dots {
    background: rgba(255, 250, 241, 0.72);
    border-color: rgba(255, 250, 241, 0.52);
    box-shadow: 0 14px 34px rgba(2, 47, 49, 0.14);
}

.hero-carousel-dots button {
    background: rgba(4, 114, 116, 0.28);
}

.hero-carousel-dots button.is-active {
    background: var(--brand-orange);
}

.trust-strip {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #fffaf1 0%, #f5efe4 100%);
}

.trust-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 0%, rgba(235, 97, 10, 0.12), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(4, 114, 116, 0.1), transparent 30%);
}

.trust-strip > .section-shell {
    position: relative;
    z-index: 1;
}

.trust-card {
    border: 1px solid rgba(4, 114, 116, 0.1);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 46px rgba(4, 47, 49, 0.08);
}

.trust-card .trust-icon.large {
    background: rgba(4, 114, 116, 0.1);
    color: var(--brand-green);
}

.trust-card:nth-child(2) .trust-icon.large,
.trust-card:nth-child(4) .trust-icon.large {
    background: rgba(235, 97, 10, 0.11);
    color: var(--brand-orange);
}

.legal-assurance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 20px;
    border: 1px solid rgba(4, 114, 116, 0.12);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.76);
    padding: 18px 20px;
    box-shadow: 0 18px 46px rgba(4, 47, 49, 0.07);
}

.legal-assurance-row span {
    display: block;
    color: var(--brand-orange);
    font-size: 0.76rem;
    font-weight: 820;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-assurance-row strong {
    display: block;
    margin-top: 4px;
    color: #12352f;
    font-size: clamp(1rem, 1.4vw, 1.24rem);
    font-weight: 650;
    letter-spacing: -0.035em;
}

.legal-assurance-row nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.legal-assurance-row a {
    border: 1px solid rgba(4, 114, 116, 0.14);
    border-radius: 999px;
    background: #fffaf1;
    color: var(--brand-green);
    font-size: 0.9rem;
    font-weight: 720;
    padding: 10px 14px;
}

.video-feature-section {
    background:
        linear-gradient(180deg, #f6efe2 0%, #fffaf1 48%, #eef5ef 100%);
    color: #12352f;
}

.video-feature-section::before {
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(4, 114, 116, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4, 114, 116, 0.07) 1px, transparent 1px);
}

.video-feature-section::after {
    background:
        radial-gradient(circle at 18% 24%, rgba(235, 97, 10, 0.16), transparent 30%),
        radial-gradient(circle at 82% 0%, rgba(4, 114, 116, 0.18), transparent 34%);
    opacity: 1;
}

.video-feature-heading .eyebrow {
    color: var(--brand-orange);
}

.video-feature-heading h2 {
    color: #12352f;
}

.video-feature-heading p:last-child {
    color: rgba(18, 53, 47, 0.68);
}

.video-category-tabs button {
    border-color: rgba(4, 114, 116, 0.14);
    background: rgba(255, 255, 255, 0.68);
    color: rgba(18, 53, 47, 0.72);
}

.video-category-tabs button:hover,
.video-category-tabs button:focus-visible,
.video-category-tabs button.is-active {
    transform: translateY(-1px);
    border-color: rgba(235, 97, 10, 0.5);
    background: var(--brand-green);
    color: #fffaf1;
}

.video-cover-button {
    border-color: rgba(4, 114, 116, 0.12);
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 18px 42px rgba(4, 47, 49, 0.09);
}

.video-cover-button:hover,
.video-cover-button:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(235, 97, 10, 0.45);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 54px rgba(4, 47, 49, 0.12);
}

.video-nav-button {
    border-color: rgba(4, 114, 116, 0.12);
    background: #fffaf1;
    color: var(--brand-green);
    box-shadow: 0 16px 34px rgba(4, 47, 49, 0.14);
}

.video-nav-button:hover,
.video-nav-button:focus-visible {
    background: var(--brand-orange);
    color: #fffaf1;
    transform: translateY(-50%) scale(1.02);
}

@media (max-width: 900px) {
    .hero-carousel-controls {
        margin-top: -14px;
        padding-bottom: 36px;
    }

    .legal-assurance-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .legal-assurance-row nav {
        justify-content: flex-start;
    }
}

/* Client homepage revision: topbar, pre-hero trust strip and softer premium hero flow. */
.site-header {
    position: sticky;
    top: 0;
    z-index: 140;
    display: block;
    overflow: visible;
    width: 100%;
    min-height: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    backdrop-filter: none;
}

.site-topbar {
    background: #0b3433;
    color: #f6f3ec;
    border-bottom: 1px solid rgba(246, 243, 236, 0.08);
}

.site-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: min(100% - 56px, 1480px);
    min-height: 38px;
    margin: 0 auto;
    font-size: 0.78rem;
    font-weight: 680;
}

.topbar-promises,
.topbar-contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.topbar-promises span,
.topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(246, 243, 236, 0.88);
}

.topbar-promises span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #d8c08a;
}

.topbar-contact a:hover {
    color: #ffffff;
}

.topbar-social {
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(246, 243, 236, 0.18);
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
}

.site-header-inner {
    position: relative;
    z-index: 2;
    overflow: visible;
    display: grid;
    grid-template-columns: minmax(190px, auto) 1fr auto;
    gap: 16px;
    align-items: center;
    width: min(100% - 56px, 1480px);
    min-height: 82px;
    margin: 0 auto;
    border: 1px solid rgba(4, 114, 116, 0.1);
    border-top: 0;
    border-radius: 0 0 28px 28px;
    background: rgba(255, 250, 241, 0.96);
    box-shadow: 0 18px 44px rgba(4, 47, 49, 0.09);
    padding: 10px 18px;
    backdrop-filter: blur(18px);
}

.site-nav {
    position: relative;
    z-index: 200;
    justify-self: center;
    max-width: 740px;
    background: rgba(255, 255, 255, 0.7);
}

.header-actions {
    justify-content: flex-end;
}

.primary-button,
.lot-form button {
    background: #0e5b4a;
    box-shadow: 0 14px 32px rgba(14, 91, 74, 0.2);
}

.primary-button:hover,
.lot-form button:hover {
    background: #047274;
    box-shadow: 0 18px 38px rgba(4, 114, 116, 0.22);
}

.secondary-button {
    border-color: rgba(4, 114, 116, 0.16);
    color: #0e5b4a;
}

.secondary-button:hover {
    border-color: rgba(235, 97, 10, 0.42);
    color: #eb610a;
}

.hero-trust-strip {
    position: relative;
    z-index: 0;
    width: min(100% - 56px, 1480px);
    margin: 20px auto 0;
    padding: 8px 0;
    border: 1px solid rgba(4, 114, 116, 0.12);
    border-radius: 22px;
    background:
        linear-gradient(90deg, rgba(246, 243, 236, 0.82), rgba(232, 242, 237, 0.9)),
        #edf5f1;
    box-shadow: 0 12px 28px rgba(4, 47, 49, 0.055);
}

.site-nav-group {
    z-index: 210;
}

.site-nav-dropdown {
    z-index: 260;
}

.hero-trust-strip .section-shell {
    width: min(100% - 18px, 1440px);
}

.hero-trust-strip::before {
    display: none;
}

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

.hero-trust-strip .trust-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 10px;
    min-height: 50px;
    border: 1px solid rgba(4, 114, 116, 0.075);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: none;
    padding: 8px 10px;
}

.hero-trust-strip .trust-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.hero-trust-strip .trust-icon.large {
    width: 30px;
    height: 30px;
    background: rgba(4, 114, 116, 0.08);
}

.hero-trust-strip .trust-icon.large svg {
    width: 16px;
    height: 16px;
}

.hero-trust-strip .trust-card strong {
    color: #12352f;
    font-size: 0.88rem;
    letter-spacing: -0.02em;
}

.hero-trust-strip .trust-card p {
    grid-column: 2;
    margin-top: 1px;
    color: rgba(18, 53, 47, 0.62);
    font-size: 0.72rem;
    line-height: 1.28;
}

.hero-trust-strip .legal-assurance-row {
    display: none;
}

.hero-section {
    background:
        radial-gradient(circle at 76% 18%, rgba(216, 192, 138, 0.2), transparent 34%),
        linear-gradient(135deg, #1b1b17 0%, #102926 46%, #0e5b4a 115%);
    box-shadow: none;
}

.hero-section::before {
    background:
        linear-gradient(rgba(246, 243, 236, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(246, 243, 236, 0.035) 1px, transparent 1px);
}

.hero-carousel-controls {
    margin-top: -38px;
    padding-bottom: 44px;
}

.video-feature-section {
    margin-top: 0;
    background:
        linear-gradient(180deg, #0e5b4a 0%, #399b86 44%, #f6f3ec 100%);
}

.video-feature-section .section-shell {
    position: relative;
}

.video-feature-heading .eyebrow,
.video-feature-heading h2,
.video-feature-heading p:last-child {
    color: #f6f3ec;
}

.video-feature-heading p:last-child {
    opacity: 0.78;
}

@media (max-width: 1100px) {
    .site-header {
        z-index: 180;
    }

    .site-header-inner {
        grid-template-columns: auto auto;
    }

    .site-nav,
    .header-actions {
        grid-column: 1 / -1;
        position: relative;
        z-index: 4;
    }

    .site-nav.is-open {
        z-index: 220;
    }

    .site-nav.is-open + .header-actions {
        z-index: 219;
    }

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

@media (max-width: 760px) {
    .site-topbar {
        display: none;
    }

    .site-header-inner {
        width: min(100% - 18px, 1480px);
        min-height: 74px;
        border-radius: 0 0 20px 20px;
        grid-template-columns: auto auto;
    }

    .menu-button {
        justify-self: end;
    }

    .hero-trust-strip {
        width: min(100% - 18px, 1480px);
        margin-top: 14px;
        padding: 7px 0;
        border-radius: 18px;
    }

    .hero-trust-strip .trust-grid {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        scrollbar-width: none;
    }

    .hero-trust-strip .trust-grid::-webkit-scrollbar {
        display: none;
    }

    .hero-trust-strip .trust-card {
        min-width: 220px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.5);
        padding: 9px;
    }

    .hero-carousel-controls {
        margin-top: -20px;
        padding-bottom: 30px;
    }
}

/* Final medical-commerce hero revision: lighter, product-led, fewer buttons and cleaner transitions. */
body {
    background:
        radial-gradient(circle at 8% 4%, rgba(57, 155, 134, 0.18), transparent 26rem),
        radial-gradient(circle at 92% 8%, rgba(216, 192, 138, 0.18), transparent 28rem),
        linear-gradient(135deg, #f6f3ec 0%, #fbfaf6 42%, #eef7f3 100%);
}

.site-topbar {
    background: #073d3c;
}

.site-header-inner {
    background: rgba(255, 252, 246, 0.97);
    border-color: rgba(4, 114, 116, 0.12);
}

.site-nav {
    max-width: 720px;
}

.site-nav a {
    color: #4d5c57;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(57, 155, 134, 0.14);
    color: #047274;
}

.primary-button,
.lot-form button,
.floating-contact-button.phone {
    background: linear-gradient(135deg, #047274, #39b8b6);
    color: #fff;
    box-shadow: 0 16px 34px rgba(4, 114, 116, 0.22);
}

.primary-button:hover,
.lot-form button:hover {
    background: linear-gradient(135deg, #036061, #39b8b6);
    color: #fff;
    box-shadow: 0 18px 40px rgba(4, 114, 116, 0.28);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.68);
    color: #047274;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 7vw, 92px) 0 clamp(58px, 6vw, 80px);
    background:
        radial-gradient(circle at 72% 28%, rgba(57, 184, 182, 0.2), transparent 30%),
        radial-gradient(circle at 86% 64%, rgba(235, 97, 10, 0.08), transparent 24%),
        linear-gradient(135deg, #f8fbf8 0%, #eef8f3 47%, #e5f3ef 100%);
    color: #12352f;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(4, 114, 116, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4, 114, 116, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 82%);
}

.hero-section::after {
    content: "";
    position: absolute;
    right: -8vw;
    bottom: -18vw;
    width: 46vw;
    height: 46vw;
    border-radius: 999px;
    background: rgba(4, 114, 116, 0.08);
    display: block;
}

.hero-section .section-shell {
    position: relative;
    z-index: 2;
}

.hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.86fr);
    align-items: center;
    gap: clamp(42px, 5vw, 84px);
    min-height: auto;
}

.hero-copy .eyebrow,
.hero-section .eyebrow {
    color: #047274;
}

.hero-copy h1 {
    max-width: 780px;
    color: #12352f;
    font-size: clamp(3.4rem, 6.5vw, 6.8rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
}

.hero-copy h1::after {
    width: 132px;
    background: linear-gradient(90deg, #047274, #39b8b6);
}

.hero-lead {
    max-width: 650px;
    color: rgba(18, 53, 47, 0.74);
    font-size: clamp(1.05rem, 1.35vw, 1.24rem);
}

.hero-proof-list {
    display: grid;
    gap: 10px;
    max-width: 580px;
    margin: 26px 0 0;
}

.hero-proof-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #12352f;
    font-weight: 720;
}

.hero-proof-list span::before {
    content: "";
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border-radius: 999px;
    background:
        radial-gradient(circle at center, #39b8b6 0 34%, transparent 36%),
        rgba(57, 184, 182, 0.14);
}

.hero-actions {
    margin-top: 30px;
}

.hero-actions .primary-button,
.hero-actions .secondary-button {
    min-height: 52px;
    padding-inline: 22px;
}

.hero-product-stage {
    min-height: clamp(420px, 44vw, 650px);
}

.hero-glow {
    inset: 8% 6% auto auto;
    width: 84%;
    height: 84%;
    background:
        radial-gradient(circle at 52% 46%, rgba(57, 184, 182, 0.28), transparent 42%),
        radial-gradient(circle at 64% 70%, rgba(216, 192, 138, 0.2), transparent 36%);
    filter: blur(22px);
}

.hero-main-product-card,
.model-card.hero-main-product-card,
.banner-image-card.hero-main-product-card {
    position: relative;
    width: min(100%, 620px);
    min-height: clamp(380px, 42vw, 620px);
    margin-left: auto;
    border: 1px solid rgba(4, 114, 116, 0.12);
    border-radius: 38px;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.46) 62%, rgba(57, 184, 182, 0.14)),
        rgba(255, 255, 255, 0.62);
    box-shadow: 0 28px 80px rgba(4, 47, 49, 0.11);
    overflow: hidden;
}

.hero-main-product-card img,
.hero-main-product-card model-viewer {
    width: 100%;
    height: 100%;
    min-height: clamp(380px, 42vw, 620px);
    object-fit: contain;
    object-position: center;
}

.banner-image-card.hero-main-product-card img {
    padding: clamp(18px, 3vw, 42px);
}

.hero-packshot-card,
.floating-card {
    display: none !important;
}

.hero-carousel-controls {
    margin-top: -26px;
    padding-bottom: 26px;
}

.video-feature-section {
    background:
        linear-gradient(180deg, #f8fbf8 0%, #eef8f3 52%, #f6f3ec 100%);
    color: #12352f;
}

.video-feature-heading .eyebrow {
    color: #047274;
}

.video-feature-heading h2 {
    color: #12352f;
}

.video-feature-heading p:last-child {
    color: rgba(18, 53, 47, 0.66);
    opacity: 1;
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-main-product-card,
    .model-card.hero-main-product-card,
    .banner-image-card.hero-main-product-card {
        width: min(100%, 560px);
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    .hero-section {
        padding: 34px 0 46px;
    }

    .hero-copy h1 {
        font-size: clamp(2.75rem, 13vw, 4rem);
    }

    .hero-proof-list {
        margin-top: 20px;
    }

    .hero-product-stage {
        min-height: 320px;
    }

    .hero-main-product-card,
    .model-card.hero-main-product-card,
    .banner-image-card.hero-main-product-card,
    .hero-main-product-card img,
    .hero-main-product-card model-viewer {
        min-height: 320px;
    }
}

/* Flat medical correction: remove decorative color washes and keep the brand palette controlled. */
body {
    background: #f7f6f1;
}

.site-topbar {
    background: #043f40;
}

.site-header-inner {
    background: #fffaf1;
    border-color: rgba(4, 114, 116, 0.14);
    box-shadow: 0 12px 34px rgba(4, 47, 49, 0.08);
}

.primary-button,
.lot-form button,
.floating-contact-button.phone {
    background: #047274;
    border-color: #047274;
    color: #fff;
    box-shadow: 0 12px 26px rgba(4, 114, 116, 0.18);
}

.primary-button:hover,
.lot-form button:hover {
    background: #035f61;
    border-color: #035f61;
    color: #fff;
    box-shadow: 0 14px 30px rgba(4, 114, 116, 0.22);
}

.secondary-button {
    background: #fffaf1;
    border-color: rgba(4, 114, 116, 0.2);
    color: #047274;
    box-shadow: none;
}

.secondary-button:hover {
    background: rgba(235, 97, 10, 0.08);
    border-color: rgba(235, 97, 10, 0.36);
    color: #c64e06;
}

.hero-trust-strip {
    background: #eef5f1;
    box-shadow: none;
}

.hero-trust-strip .trust-card {
    background: #fffaf1;
    border-color: rgba(4, 114, 116, 0.12);
    box-shadow: none;
}

.hero-section {
    background: #edf6f2;
    color: #12352f;
    box-shadow: none;
}

.hero-section::before,
.hero-section::after,
.hero-glow,
.video-feature-section::before,
.video-feature-section::after {
    display: none !important;
}

.hero-copy h1,
.hero-feature-heading h2,
.video-feature-heading h2 {
    color: #12352f;
}

.hero-copy h1::after {
    background: #047274;
}

.hero-lead,
.video-feature-heading p:last-child {
    color: rgba(18, 53, 47, 0.72);
}

.hero-proof-list span::before {
    background: #d9eee8;
    border: 7px solid #047274;
}

.hero-main-product-card,
.model-card.hero-main-product-card,
.banner-image-card.hero-main-product-card {
    background: #fffaf1;
    border-color: rgba(4, 114, 116, 0.14);
    box-shadow: 0 18px 44px rgba(4, 47, 49, 0.1);
}

.video-feature-section {
    background: #fffaf1;
    color: #12352f;
}

.video-cover-card {
    box-shadow: 0 16px 36px rgba(4, 47, 49, 0.12);
}

.analysis-section,
.lot-section {
    background: #f7f6f1;
}

/* Balanced premium medical correction: keep contrast without returning to noisy gradients. */
body {
    background: #f3eee3;
}

.site-header {
    background: #f3eee3;
}

.site-header-inner {
    background: #fffaf1;
}

.hero-trust-strip {
    background: #dceee8;
    border-top: 1px solid rgba(4, 114, 116, 0.14);
    border-bottom: 1px solid rgba(4, 114, 116, 0.14);
}

.hero-trust-strip .trust-card {
    background: #f8f4ea;
    border-color: rgba(4, 114, 116, 0.16);
}

.hero-section {
    background: #073d3c;
    color: #fffaf1;
}

.hero-copy .eyebrow,
.hero-section .eyebrow {
    color: #9edbd0;
}

.hero-copy h1 {
    color: #fffaf1;
}

.hero-copy h1::after {
    background: #eb610a;
}

.hero-lead {
    color: rgba(255, 250, 241, 0.76);
}

.hero-proof-list span {
    color: #fffaf1;
}

.hero-proof-list span::before {
    background: #12352f;
    border-color: #39b8b6;
}

.hero-actions .secondary-button {
    background: rgba(255, 250, 241, 0.08);
    border-color: rgba(255, 250, 241, 0.32);
    color: #fffaf1;
}

.hero-actions .secondary-button:hover {
    background: rgba(255, 250, 241, 0.14);
    border-color: rgba(235, 97, 10, 0.58);
    color: #fffaf1;
}

.hero-main-product-card,
.model-card.hero-main-product-card,
.banner-image-card.hero-main-product-card {
    background: #f8f4ea;
    border-color: rgba(255, 250, 241, 0.18);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.video-feature-section {
    background: #e5f1ec;
    border-top: 1px solid rgba(4, 114, 116, 0.12);
    border-bottom: 1px solid rgba(4, 114, 116, 0.12);
}

.product-section,
.catalog-section,
.product-detail-section {
    background: #f3eee3;
}

.analysis-section {
    background: #0f4744;
    color: #fffaf1;
}

.analysis-section .section-heading h2,
.analysis-section .section-heading p,
.analysis-section .eyebrow {
    color: #fffaf1;
}

.lot-section {
    background: #f3eee3;
}

/* Authenticity query section: align with the main ShilajitKo green. */
.lot-section {
    background: #047274;
    color: #fffaf1;
}

.lot-section::before {
    display: none !important;
}

.lot-card {
    background: rgba(3, 63, 64, 0.42);
    border-color: rgba(255, 250, 241, 0.18);
    box-shadow: 0 22px 58px rgba(3, 63, 64, 0.22);
}

.lot-card .eyebrow,
.lot-card h2,
.lot-card label,
.lot-card p {
    color: #fffaf1;
}

.lot-card p {
    opacity: 0.78;
}

.lot-form {
    background: rgba(255, 250, 241, 0.08);
    border-color: rgba(255, 250, 241, 0.18);
}

.lot-card input {
    background: #fffaf1;
    border-color: rgba(255, 250, 241, 0.45);
    color: #12352f;
}

.lot-card input::placeholder {
    color: rgba(18, 53, 47, 0.48);
}

.lot-card input:focus {
    border-color: #9edbd0;
    box-shadow: 0 0 0 5px rgba(158, 219, 208, 0.16);
}

.qr-corner-card {
    background: rgba(255, 250, 241, 0.12);
    border-color: rgba(255, 250, 241, 0.2);
    color: #fffaf1;
}

.qr-corner-card span,
.qr-corner-card strong {
    color: #fffaf1;
}

/* Corporate hero redesign: product-led, trustworthy, fresh-medical ShilajitKo palette. */
:root {
    --shj-corp-teal: #0b7772;
    --shj-corp-teal-dark: #063f3e;
    --shj-corp-aqua: #5cc6c3;
    --shj-corp-orange: #ff6b1a;
    --shj-corp-sand: #b7a475;
    --shj-corp-cream: #f6f3ec;
    --shj-corp-ink: #12352f;
}

.hero-section {
    isolation: isolate;
    overflow: hidden;
    padding: clamp(62px, 7vw, 104px) 0 clamp(54px, 6vw, 78px);
    background: var(--shj-corp-teal-dark);
    color: var(--shj-corp-cream);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    display: block !important;
    width: clamp(8px, 0.8vw, 14px);
    background: var(--shj-corp-aqua);
    opacity: 1;
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    right: clamp(22px, 4vw, 68px);
    top: clamp(22px, 4vw, 70px);
    display: block !important;
    width: clamp(68px, 8vw, 130px);
    height: clamp(68px, 8vw, 130px);
    border: 1px solid rgba(92, 198, 195, 0.34);
    border-radius: 999px;
    background: rgba(92, 198, 195, 0.06);
    pointer-events: none;
}

.hero-section .section-shell {
    width: min(100% - 56px, 1500px);
}

.hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.86fr);
    gap: clamp(48px, 6vw, 96px);
}

.hero-copy {
    max-width: 820px;
    padding-left: clamp(18px, 2.4vw, 34px);
    border-left: 4px solid var(--shj-corp-aqua);
}

.hero-copy .eyebrow,
.hero-section .eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(92, 198, 195, 0.34);
    border-radius: 999px;
    background: rgba(92, 198, 195, 0.12);
    color: #d8fffb;
    letter-spacing: 0.16em;
}

.hero-copy h1 {
    max-width: 820px;
    color: var(--shj-corp-cream);
    font-size: clamp(3.6rem, 6.7vw, 7rem);
    line-height: 0.88;
    letter-spacing: -0.082em;
}

.hero-copy h1::after {
    width: 118px;
    height: 5px;
    margin-top: 24px;
    border-radius: 999px;
    background: var(--shj-corp-orange);
}

.hero-lead {
    max-width: 680px;
    margin-top: 24px;
    color: rgba(246, 243, 236, 0.78);
    font-size: clamp(1.06rem, 1.22vw, 1.2rem);
    line-height: 1.72;
}

.hero-proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 720px;
    margin-top: 28px;
}

.hero-proof-list span {
    min-height: 72px;
    padding: 14px 15px;
    border: 1px solid rgba(92, 198, 195, 0.24);
    border-radius: 18px;
    background: rgba(246, 243, 236, 0.065);
    color: var(--shj-corp-cream);
    font-weight: 740;
}

.hero-proof-list span::before {
    width: 34px;
    height: 34px;
    border: 8px solid var(--shj-corp-aqua);
    background: var(--shj-corp-teal-dark);
}

.hero-actions {
    margin-top: 32px;
}

.hero-actions .primary-button {
    background: var(--shj-corp-orange);
    border-color: var(--shj-corp-orange);
    color: #fffaf1;
    box-shadow: 0 16px 34px rgba(255, 107, 26, 0.24);
}

.hero-actions .primary-button:hover {
    background: #e85b10;
    border-color: #e85b10;
    color: #fffaf1;
    box-shadow: 0 18px 40px rgba(255, 107, 26, 0.3);
}

.hero-actions .secondary-button {
    background: transparent;
    border-color: rgba(92, 198, 195, 0.46);
    color: #d8fffb;
    box-shadow: none;
}

.hero-actions .secondary-button:hover {
    background: rgba(92, 198, 195, 0.1);
    border-color: var(--shj-corp-aqua);
    color: #fffaf1;
}

.hero-product-stage {
    position: relative;
    min-height: clamp(430px, 45vw, 670px);
}

.hero-product-stage::before {
    content: "ORİJİNALLİK KODU İLE KONTROL";
    position: absolute;
    left: clamp(4px, 1vw, 18px);
    top: clamp(10px, 2vw, 28px);
    z-index: 4;
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--shj-corp-teal);
    color: #fffaf1;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.hero-product-stage::after {
    content: "";
    position: absolute;
    right: -16px;
    bottom: 8%;
    z-index: 1;
    width: 42%;
    max-width: 260px;
    height: 12px;
    border-radius: 999px;
    background: var(--shj-corp-sand);
    opacity: 0.88;
}

.hero-main-product-card,
.model-card.hero-main-product-card,
.banner-image-card.hero-main-product-card {
    z-index: 2;
    width: min(100%, 640px);
    min-height: clamp(410px, 43vw, 650px);
    border: 1px solid rgba(246, 243, 236, 0.18);
    border-radius: 34px;
    background: var(--shj-corp-cream);
    box-shadow: 0 30px 82px rgba(0, 0, 0, 0.26);
}

.hero-main-product-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(11, 119, 114, 0.16);
    border-radius: 24px;
    pointer-events: none;
}

.hero-main-product-card img,
.hero-main-product-card model-viewer {
    min-height: clamp(410px, 43vw, 650px);
}

.banner-image-card.hero-main-product-card img {
    padding: clamp(20px, 3.2vw, 48px);
}

.hero-carousel-controls {
    margin-top: -22px;
}

.hero-carousel-dots button {
    background: rgba(246, 243, 236, 0.34);
}

.hero-carousel-dots button.is-active {
    background: var(--shj-corp-orange);
}

.hero-nav-button {
    background: var(--shj-corp-cream);
    color: var(--shj-corp-teal-dark);
}

@media (max-width: 1100px) {
    .hero-section .section-shell {
        width: min(100% - 32px, 1240px);
    }

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

    .hero-copy {
        max-width: 900px;
    }

    .hero-product-stage::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 760px) {
    .hero-section {
        padding: 42px 0 52px;
    }

    .hero-section .section-shell {
        width: min(100% - 24px, 1220px);
    }

    .hero-copy {
        padding-left: 18px;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 13vw, 4.2rem);
        letter-spacing: -0.075em;
    }

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

    .hero-product-stage,
    .hero-main-product-card,
    .model-card.hero-main-product-card,
    .banner-image-card.hero-main-product-card,
    .hero-main-product-card img,
    .hero-main-product-card model-viewer {
        min-height: 330px;
    }
}

/* Video guide redesign: educational showcase, separate from the hero but in the same brand system. */
.video-feature-section {
    position: relative;
    overflow: hidden;
    padding: clamp(66px, 7vw, 98px) 0;
    background: #dff1ed;
    color: var(--shj-corp-ink);
    border-top: 1px solid rgba(11, 119, 114, 0.16);
    border-bottom: 1px solid rgba(11, 119, 114, 0.16);
}

.video-feature-section::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    display: block !important;
    width: clamp(8px, 0.8vw, 14px);
    background: var(--shj-corp-teal);
    opacity: 1;
    pointer-events: none;
}

.video-feature-section::after {
    content: "";
    position: absolute;
    right: clamp(20px, 4vw, 70px);
    top: clamp(28px, 4vw, 64px);
    display: block !important;
    width: clamp(70px, 8vw, 126px);
    height: clamp(70px, 8vw, 126px);
    border-radius: 999px;
    border: 1px solid rgba(183, 164, 117, 0.42);
    background: rgba(183, 164, 117, 0.12);
    pointer-events: none;
}

.video-feature-shell {
    position: relative;
    z-index: 2;
    width: min(100% - 56px, 1500px);
    gap: 30px;
}

.video-feature-heading {
    max-width: none;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.56fr);
    align-items: end;
    gap: 22px 44px;
    padding-left: clamp(18px, 2.4vw, 34px);
    border-left: 4px solid var(--shj-corp-teal);
}

.video-feature-heading .eyebrow {
    grid-column: 1 / -1;
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid rgba(11, 119, 114, 0.18);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.62);
    color: var(--shj-corp-teal);
    letter-spacing: 0.16em;
}

.video-feature-heading h2 {
    max-width: 860px;
    color: var(--shj-corp-ink);
    font-size: clamp(2.45rem, 4.4vw, 5.2rem);
    line-height: 0.94;
    letter-spacing: -0.07em;
}

.video-feature-heading p:last-child {
    justify-self: end;
    max-width: 430px;
    color: rgba(18, 53, 47, 0.72);
    font-size: 1.02rem;
    line-height: 1.7;
}

.video-category-tabs {
    gap: 10px;
    padding-left: clamp(18px, 2.4vw, 34px);
}

.video-category-tabs button {
    border: 1px solid rgba(11, 119, 114, 0.18);
    background: rgba(255, 250, 241, 0.76);
    color: var(--shj-corp-teal-dark);
    box-shadow: none;
}

.video-category-tabs button:hover,
.video-category-tabs button:focus-visible,
.video-category-tabs button.is-active {
    transform: translateY(-1px);
    border-color: var(--shj-corp-orange);
    background: var(--shj-corp-teal);
    color: #fffaf1;
}

.video-carousel-wrap {
    padding-inline: 20px;
}

.video-card-carousel {
    gap: 14px;
    grid-auto-columns: minmax(178px, 1fr);
}

.video-cover-card {
    min-width: 0;
    box-shadow: none;
}

.video-cover-button {
    min-height: clamp(250px, 25vw, 340px);
    border: 1px solid rgba(246, 243, 236, 0.16);
    border-radius: 24px;
    background: var(--shj-corp-teal-dark);
    box-shadow: 0 18px 44px rgba(6, 63, 62, 0.18);
}

.video-cover-button:hover,
.video-cover-button:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 26, 0.72);
    box-shadow: 0 24px 58px rgba(6, 63, 62, 0.24);
}

.video-cover-media::before {
    background: linear-gradient(180deg, rgba(6, 63, 62, 0.12), rgba(6, 63, 62, 0.8));
}

.video-cover-media img {
    filter: saturate(0.96) contrast(1.02);
}

.video-duration-pill {
    top: 14px;
    right: 14px;
    border: 1px solid rgba(255, 250, 241, 0.24);
    background: rgba(11, 119, 114, 0.88);
    color: #fffaf1;
}

.video-cover-title {
    inset: auto 14px 14px 14px;
    color: #fffaf1;
}

.video-cover-title small {
    color: var(--shj-corp-sand);
}

.video-cover-title strong {
    font-size: clamp(1.04rem, 1.35vw, 1.32rem);
    line-height: 1.05;
}

.video-play-mark {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: var(--shj-corp-orange);
    color: #fffaf1;
    box-shadow: 0 14px 34px rgba(255, 107, 26, 0.3);
}

.video-cover-button:hover .video-play-mark {
    transform: translate(-50%, -50%) scale(1.06);
    background: #e85b10;
}

.video-nav-button {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(11, 119, 114, 0.2);
    background: #fffaf1;
    color: var(--shj-corp-teal-dark);
    box-shadow: 0 16px 34px rgba(6, 63, 62, 0.12);
}

.video-nav-button.prev {
    left: -4px;
}

.video-nav-button.next {
    right: -4px;
}

.video-nav-button:hover,
.video-nav-button:focus-visible {
    background: var(--shj-corp-orange);
    color: #fffaf1;
}

@media (min-width: 1180px) {
    .video-card-carousel {
        grid-auto-columns: calc((100% - 70px) / 6);
    }
}

@media (max-width: 1100px) {
    .video-feature-heading {
        grid-template-columns: 1fr;
    }

    .video-feature-heading p:last-child {
        justify-self: start;
    }
}

@media (max-width: 760px) {
    .video-feature-section {
        padding: 50px 0;
    }

    .video-feature-shell {
        width: min(100% - 24px, 1500px);
    }

    .video-feature-heading {
        padding-left: 18px;
    }

    .video-feature-heading h2 {
        font-size: clamp(2.25rem, 11vw, 3.35rem);
    }

    .video-carousel-wrap {
        padding-inline: 0;
    }

    .video-card-carousel {
        grid-auto-columns: minmax(230px, 78vw);
    }

    .video-nav-button.prev {
        left: 6px;
    }

    .video-nav-button.next {
        right: 6px;
    }
}

/* Product information redesign: homepage sales card with product stage and clear purchase path. */
.product-section {
    position: relative;
    overflow: hidden;
    padding: clamp(70px, 8vw, 112px) 0;
    background: #f3eee3;
}

.product-section::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: clamp(8px, 0.8vw, 14px);
    background: var(--shj-corp-sand);
    opacity: 0.92;
    pointer-events: none;
}

.product-showcase {
    width: min(100% - 56px, 1500px);
    grid-template-columns: minmax(430px, 0.9fr) minmax(0, 0.92fr);
    align-items: stretch;
    gap: clamp(28px, 4vw, 56px);
}

.product-side-stack {
    gap: 16px;
}

.product-360-card {
    min-height: clamp(450px, 44vw, 640px);
    border: 1px solid rgba(11, 119, 114, 0.16);
    border-radius: 34px;
    background: #fffaf1;
    box-shadow: 0 24px 70px rgba(6, 63, 62, 0.11);
}

.product-360-card::after {
    background: rgba(92, 198, 195, 0.12);
}

.product-360-copy {
    position: relative;
    z-index: 2;
}

.product-360-copy .eyebrow {
    color: var(--shj-corp-teal);
}

.product-360-copy p:last-child {
    color: rgba(18, 53, 47, 0.66);
}

.product-360-card model-viewer {
    height: clamp(330px, 36vw, 500px);
}

.product-note-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.product-note-card div {
    min-height: 132px;
    padding: 18px;
    border: 1px solid rgba(11, 119, 114, 0.14);
    border-radius: 20px;
    background: #fffaf1;
    box-shadow: 0 14px 34px rgba(6, 63, 62, 0.06);
}

.product-note-card span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #dff1ed;
    border: 8px solid var(--shj-corp-aqua);
}

.product-note-card strong {
    color: var(--shj-corp-ink);
    font-size: 1rem;
}

.product-note-card p {
    color: rgba(18, 53, 47, 0.66);
    line-height: 1.55;
}

.product-info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 4vw, 54px);
    border: 1px solid rgba(11, 119, 114, 0.16);
    border-radius: 34px;
    background: #fffaf1;
    box-shadow: 0 24px 70px rgba(6, 63, 62, 0.1);
}

.product-info-card .eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid rgba(11, 119, 114, 0.18);
    border-radius: 999px;
    background: #dff1ed;
    color: var(--shj-corp-teal);
    letter-spacing: 0.16em;
}

.product-info-card h2 {
    max-width: 680px;
    margin-top: 18px;
    color: var(--shj-corp-ink);
    font-size: clamp(2.5rem, 4.8vw, 5.5rem);
    line-height: 0.92;
    letter-spacing: -0.074em;
}

.product-info-card > p {
    max-width: 680px;
    margin-top: 22px;
    color: rgba(18, 53, 47, 0.72);
    font-size: 1.06rem;
    line-height: 1.72;
    -webkit-line-clamp: 5;
}

.feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.feature-list div {
    min-height: 112px;
    padding: 16px;
    border: 1px solid rgba(11, 119, 114, 0.12);
    border-radius: 18px;
    background: #f6f3ec;
}

.feature-list .mini-icon {
    width: 30px;
    height: 30px;
    background: var(--shj-corp-teal);
    box-shadow: none;
}

.feature-list span:not(.mini-icon) {
    color: rgba(18, 53, 47, 0.58);
}

.feature-list strong {
    color: var(--shj-corp-ink);
}

.price-block {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(11, 119, 114, 0.14);
}

.price-block strong {
    color: var(--shj-corp-teal-dark);
    font-size: clamp(2rem, 3vw, 3.35rem);
}

.price-block em {
    color: rgba(18, 53, 47, 0.48);
}

.product-decision-note {
    display: grid;
    gap: 6px;
    margin-top: 30px;
    padding: 18px 20px;
    border: 1px solid rgba(11, 119, 114, 0.14);
    border-left: 5px solid var(--shj-corp-orange);
    border-radius: 20px;
    background: #f6f3ec;
}

.product-decision-note strong {
    color: var(--shj-corp-teal-dark);
    font-size: 1rem;
}

.product-decision-note span {
    color: rgba(18, 53, 47, 0.66);
    line-height: 1.55;
}

.product-info-card .button-row {
    margin-top: 26px;
    align-items: center;
}

.product-info-card .button-row .primary-button {
    background: var(--shj-corp-orange);
    border-color: var(--shj-corp-orange);
    color: #fffaf1;
    box-shadow: 0 16px 34px rgba(255, 107, 26, 0.22);
}

.product-info-card .button-row .primary-button:hover {
    background: #e85b10;
    border-color: #e85b10;
}

.product-info-card .button-row .secondary-button {
    background: transparent;
    border-color: rgba(11, 119, 114, 0.22);
    color: var(--shj-corp-teal);
}

.product-info-card .button-row .secondary-button:hover {
    background: #dff1ed;
    border-color: rgba(11, 119, 114, 0.32);
    color: var(--shj-corp-teal-dark);
}

.usage-card.warn {
    margin-top: 18px;
    border: 1px solid rgba(183, 164, 117, 0.26);
    border-radius: 24px;
    background: #f6f3ec;
    color: var(--shj-corp-ink);
    box-shadow: none;
}

.usage-card.warn .eyebrow {
    color: var(--shj-corp-teal);
}

.usage-card.warn p {
    color: rgba(18, 53, 47, 0.7);
}

.product-usage-tab {
    padding: 0;
    overflow: hidden;
}

.product-usage-tab summary {
    display: flex;
    cursor: pointer;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    color: var(--shj-corp-ink);
    font-weight: 850;
}

.product-usage-tab summary::-webkit-details-marker {
    display: none;
}

.product-usage-tab summary span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.product-usage-tab summary span::before {
    content: "";
    width: 28px;
    height: 28px;
    border: 7px solid var(--shj-corp-aqua);
    border-radius: 999px;
    background: var(--shj-corp-teal);
}

.product-usage-tab summary em {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--shj-corp-teal);
    font-size: 0.86rem;
    font-style: normal;
    font-weight: 850;
}

.product-usage-tab summary em::after {
    content: "+";
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 999px;
    background: #dff1ed;
    color: var(--shj-corp-teal-dark);
}

.product-usage-tab[open] summary {
    border-bottom: 1px solid rgba(183, 164, 117, 0.22);
}

.product-usage-tab[open] summary em {
    color: var(--shj-corp-orange);
}

.product-usage-tab[open] summary em::before {
    content: "Detayı gizle";
}

.product-usage-tab[open] summary em {
    font-size: 0;
}

.product-usage-tab[open] summary em::after {
    content: "−";
    font-size: 0.86rem;
    background: rgba(255, 107, 26, 0.12);
    color: var(--shj-corp-orange);
}

.product-usage-tab[open] summary em::before {
    font-size: 0.86rem;
}

.product-usage-tab-panel {
    display: grid;
    gap: 10px;
    padding: 18px 20px 20px;
}

.product-usage-tab-panel p {
    margin: 0;
}

@media (max-width: 1180px) {
    .product-showcase {
        grid-template-columns: 1fr;
    }

    .product-info-card {
        order: 2;
    }

    .product-side-stack {
        order: 1;
    }
}

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

    .product-showcase {
        width: min(100% - 24px, 1500px);
    }

    .product-info-card,
    .product-360-card {
        border-radius: 24px;
    }

    .product-info-card h2 {
        font-size: clamp(2.15rem, 11vw, 3.4rem);
    }

    .feature-list,
    .product-note-card {
        grid-template-columns: 1fr;
    }

    .product-360-card {
        min-height: 360px;
    }

    .product-360-card model-viewer {
        height: 280px;
    }
}

/* Client revision: header menu stability, trust marquee, footer social links. */
.premium-site-header {
    z-index: 5000;
}

.site-nav {
    max-width: min(100%, 880px);
    min-width: 0;
    flex-wrap: nowrap;
}

.site-nav > a,
.site-nav-group > a {
    max-width: clamp(92px, 8.8vw, 158px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-nav-dropdown {
    z-index: 5010;
    min-width: 260px;
    max-width: min(380px, calc(100vw - 40px));
}

.site-nav-dropdown a {
    max-width: none;
    white-space: normal;
    line-height: 1.3;
}

@media (min-width: 1024px) and (max-width: 1320px) {
    .site-nav {
        gap: 4px;
        max-width: min(100%, 760px);
    }

    .site-nav > a,
    .site-nav-group > a {
        max-width: clamp(86px, 8vw, 124px);
        padding-inline: 10px;
        font-size: 0.78rem;
    }
}

@media (max-width: 980px) {
    .site-nav.is-open > a,
    .site-nav.is-open .site-nav-group > a {
        max-width: none;
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
    }
}

.site-trust-marquee {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid rgba(183, 164, 117, 0.28);
    border-bottom: 1px solid rgba(183, 164, 117, 0.28);
    background: linear-gradient(90deg, #063f3e 0%, #047274 48%, #063f3e 100%);
    color: #fffaf1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-trust-marquee .trust-grid,
.site-trust-marquee .legal-assurance-row {
    display: none;
}

.site-trust-marquee-track {
    display: flex;
    width: max-content;
    min-width: 200%;
    align-items: center;
    gap: clamp(26px, 4vw, 58px);
    padding: 12px 0;
    animation: shj-trust-marquee 34s linear infinite;
}

.site-trust-marquee-track span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 250, 241, 0.94);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-trust-marquee-track span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #d8c08a;
    box-shadow: 0 0 0 5px rgba(216, 192, 138, 0.12);
}

@keyframes shj-trust-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.trust-card-section {
    margin: 0;
    padding: clamp(28px, 4vw, 54px) 0;
    border-top: 1px solid rgba(4, 114, 116, 0.12);
    border-bottom: 1px solid rgba(4, 114, 116, 0.12);
    background:
        radial-gradient(circle at 12% 20%, rgba(95, 192, 191, 0.22), transparent 32%),
        linear-gradient(180deg, #f6f3ec 0%, #edf7f4 100%);
}

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

.trust-card-section .trust-card {
    border: 1px solid rgba(4, 114, 116, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 42px rgba(4, 44, 42, 0.08);
}

.trust-card-section .legal-assurance-row {
    display: flex;
    margin-top: 14px;
    border: 1px solid rgba(183, 164, 117, 0.24);
    border-radius: 24px;
    background: rgba(255, 250, 241, 0.8);
}

.footer-grid {
    grid-template-columns: minmax(220px, 1.15fr) minmax(170px, 0.8fr) minmax(190px, 0.9fr) minmax(220px, 1fr) minmax(180px, 0.8fr);
}

.footer-social-links {
    display: grid;
    gap: 12px;
}

.footer-social-links .social-pill-row {
    justify-content: flex-start;
    gap: 8px;
}

.footer-social-links .social-pill {
    border-color: rgba(216, 192, 138, 0.38);
    background: rgba(255, 255, 255, 0.06);
    color: #fffaf1;
}

.footer-social-links .social-pill:hover {
    border-color: rgba(235, 97, 10, 0.55);
    background: rgba(235, 97, 10, 0.14);
}

.footer-social-links small {
    color: rgba(255, 250, 241, 0.56);
    line-height: 1.5;
}

@media (max-width: 1180px) {
    .trust-card-section .trust-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-trust-marquee-track {
        animation-duration: 24s;
        padding: 10px 0;
    }

    .site-trust-marquee-track span {
        font-size: 0.74rem;
    }

    .trust-card-section .trust-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-card-section .legal-assurance-row {
        display: grid;
    }
}

@media (min-width: 1000px) {
    .hero-section {
        padding-top: clamp(38px, 4.2vw, 58px);
        padding-bottom: clamp(40px, 4vw, 58px);
    }

    .hero-grid {
        gap: clamp(30px, 4vw, 62px);
    }

    .hero-copy h1 {
        font-size: clamp(3.05rem, 5.6vw, 5.95rem);
        line-height: 0.92;
    }

    .hero-lead {
        max-width: 600px;
        margin-top: 18px;
    }

    .hero-proof-list {
        margin-top: 18px;
    }

    .hero-actions {
        margin-top: 24px;
    }

    .hero-product-stage {
        min-height: clamp(390px, 38vw, 560px);
    }

    .hero-main-product-card,
    .model-card.hero-main-product-card,
    .banner-image-card.hero-main-product-card {
        width: min(100%, 580px);
        min-height: clamp(380px, 37vw, 560px);
    }

    .hero-main-product-card img,
    .hero-main-product-card model-viewer {
        min-height: clamp(380px, 37vw, 560px);
        max-height: 560px;
        object-fit: contain;
    }
}

/* Revision: social icons, document library, and hero packshot-only visual. */
body.document-locked {
    overflow: hidden;
}

.topbar-social-icons {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-icon-link,
.social-pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-icon-link svg,
.social-pill-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex: 0 0 auto;
}

.topbar-social.social-icon-link {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 250, 241, 0.22);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.08);
    color: #fffaf1;
    padding: 0;
}

.social-pill-icon {
    min-height: 38px;
    padding-inline: 12px;
}

.hero-packshot-only {
    border-color: rgba(255, 250, 241, 0.14);
    background:
        radial-gradient(circle at 50% 76%, rgba(4, 114, 116, 0.22), transparent 34%),
        radial-gradient(circle at 64% 30%, rgba(235, 97, 10, 0.12), transparent 32%),
        linear-gradient(145deg, rgba(255, 250, 241, 0.08), rgba(237, 247, 244, 0.06));
    box-shadow: none;
    backdrop-filter: none;
}

.hero-packshot-only .product-hero-image {
    object-fit: contain;
    padding: clamp(18px, 4vw, 58px);
    filter: drop-shadow(0 34px 46px rgba(6, 63, 62, 0.24));
}

.hero-carousel-section .hero-carousel-controls {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: clamp(-18px, -1.4vw, -8px);
}

.hero-carousel-section .hero-nav-button {
    display: grid;
    width: 46px;
    height: 46px;
    min-width: 46px;
    place-items: center;
    border: 1px solid rgba(4, 114, 116, 0.18);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.92);
    color: var(--shj-corp-teal-dark, #063f3e);
    box-shadow: 0 14px 34px rgba(6, 63, 62, 0.12);
    font-size: 1.65rem;
    font-weight: 650;
    line-height: 1;
    padding: 0 0 2px;
}

.hero-carousel-section .hero-nav-button:hover,
.hero-carousel-section .hero-nav-button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(235, 97, 10, 0.42);
    background: var(--shj-corp-orange, #eb610a);
    color: #fffaf1;
}

.documents-section {
    position: relative;
    overflow: hidden;
    padding: clamp(70px, 8vw, 112px) 0;
    background:
        radial-gradient(circle at 14% 20%, rgba(95, 198, 195, 0.24), transparent 28rem),
        linear-gradient(135deg, #fffaf1 0%, #edf7f4 52%, #f6f3ec 100%);
}

.documents-section::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: clamp(8px, 0.8vw, 14px);
    background: var(--shj-corp-teal, #047274);
}

.documents-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 28px;
}

.document-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.document-card,
.report-panel {
    border: 1px solid rgba(4, 114, 116, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 58px rgba(6, 63, 62, 0.09);
    backdrop-filter: blur(16px);
}

.document-card {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 24px;
}

.document-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(4, 114, 116, 0.12), rgba(235, 97, 10, 0.14));
    color: var(--shj-corp-teal, #047274);
}

.document-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.document-card small {
    color: rgba(18, 53, 47, 0.48);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.document-card h3 {
    margin-top: 8px;
    color: var(--shj-corp-ink, #12352f);
    font-size: 1.3rem;
}

.document-card p {
    margin: 8px 0 0;
    color: rgba(18, 53, 47, 0.68);
}

.document-open-button {
    width: fit-content;
}

.report-panel {
    display: grid;
    gap: 22px;
    padding: clamp(22px, 3vw, 34px);
}

.report-panel-heading {
    max-width: 780px;
}

.report-panel-heading p:not(.eyebrow) {
    color: rgba(18, 53, 47, 0.66);
}

.document-dialog {
    position: fixed;
    inset: 0;
    z-index: 8000;
    display: none;
    place-items: center;
    padding: 22px;
}

.document-dialog.is-open {
    display: grid;
}

.document-dialog-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(10, 31, 28, 0.62);
    backdrop-filter: blur(16px);
    cursor: pointer;
}

.document-dialog-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto minmax(360px, 1fr) auto;
    width: min(100%, 1040px);
    height: min(88vh, 820px);
    overflow: hidden;
    border: 1px solid rgba(255, 250, 241, 0.22);
    border-radius: 28px;
    background: #fffaf1;
    box-shadow: 0 40px 120px rgba(6, 63, 62, 0.34);
}

.document-dialog-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(4, 114, 116, 0.12);
    padding: 18px 22px;
}

.document-dialog-head span {
    color: var(--shj-corp-teal, #047274);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.document-dialog-head h2 {
    margin-top: 4px;
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.document-dialog-close {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(4, 114, 116, 0.16);
    border-radius: 999px;
    background: #fff;
    color: var(--shj-corp-ink, #12352f);
    cursor: pointer;
    font-size: 1.5rem;
}

.document-dialog iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
}

.document-download-link {
    justify-self: end;
    margin: 12px 16px 16px;
}

@media (max-width: 980px) {
    .document-card-grid {
        grid-template-columns: 1fr;
    }

    .document-dialog {
        padding: 12px;
    }

    .document-dialog-panel {
        height: 90vh;
        border-radius: 22px;
    }
}

.hero-carousel-section .hero-packshot-only.hero-main-product-card,
.hero-carousel-section .model-card.hero-packshot-only.hero-main-product-card,
.hero-carousel-section .banner-image-card.hero-packshot-only.hero-main-product-card {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.hero-carousel-section .hero-product-stage::before,
.hero-carousel-section .hero-product-stage::after {
    content: none !important;
    display: none !important;
}

h1,
h2,
h3,
h4,
.hero-copy h1,
.hero-carousel-section .hero-copy h1,
.section-heading h2,
.video-feature-heading h2,
.video-cover-title,
.video-cover-title strong,
.product-info-card h3,
.document-card h3,
.report-card h3,
.catalog-product-copy h1,
.detail-main-title {
    font-family: var(--font-heading);
    font-weight: 560 !important;
    letter-spacing: -0.018em !important;
}

body,
p,
li,
.hero-lead,
.section-heading p,
.video-feature-heading p:last-child,
.product-info-card p,
.document-card p,
.report-card p,
.catalog-product-copy > p:not(.eyebrow),
.detail-product-summary {
    font-weight: 300;
}

strong,
b,
.eyebrow,
.site-nav a,
.site-nav-group > a,
.primary-button,
.secondary-button,
.video-filter-button,
.trust-card strong,
.topbar,
.header-actions a {
    font-weight: 700;
}

h1,
.hero-copy h1,
.hero-carousel-section .hero-copy h1,
.catalog-hero h1,
.site-page-hero h1 {
    font-size: clamp(2rem, 3.35vw, 3.45rem) !important;
    line-height: 1.06;
    letter-spacing: -0.012em !important;
}

h2,
.section-heading h2,
.video-feature-heading h2,
.analysis-section .section-heading h2,
.product-info-card h2,
.report-panel-heading h2 {
    font-size: clamp(1.48rem, 2.1vw, 2.42rem) !important;
    line-height: 1.08;
    letter-spacing: -0.014em !important;
}

h3,
.product-info-card h3,
.document-card h3,
.report-card h3,
.video-cover-title,
.detail-buy-card h1,
.cart-empty-card h1,
.cart-line h1 {
    font-size: clamp(1.02rem, 1.25vw, 1.55rem) !important;
    line-height: 1.18;
    letter-spacing: -0.008em !important;
}

@media (max-width: 760px) {
    h1,
    .hero-copy h1,
    .hero-carousel-section .hero-copy h1,
    .catalog-hero h1,
    .site-page-hero h1 {
        font-size: clamp(1.85rem, 8.5vw, 2.55rem) !important;
    }

    h2,
    .section-heading h2,
    .video-feature-heading h2,
    .analysis-section .section-heading h2,
    .product-info-card h2,
    .report-panel-heading h2 {
        font-size: clamp(1.45rem, 5.8vw, 2.05rem) !important;
    }
}

.product-360-card.product-photo-card {
    display: grid;
    align-content: space-between;
    overflow: hidden;
    min-height: clamp(450px, 44vw, 640px);
}

.product-photo-stage {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: clamp(320px, 34vw, 500px);
    place-items: center;
    padding: clamp(14px, 3vw, 36px);
}

.product-360-image {
    display: block;
    width: min(78%, 460px);
    max-height: clamp(300px, 32vw, 500px);
    object-fit: contain;
    filter: drop-shadow(0 30px 48px rgba(6, 63, 62, 0.18));
}

@media (max-width: 760px) {
    .product-photo-stage {
        min-height: 300px;
    }

    .product-360-image {
        width: min(88%, 340px);
        max-height: 330px;
    }
}

/* Final product-detail CTA and footer payment/social polish */
.detail-commerce-layout .cart-add-form + .secondary-button {
    border-color: rgba(235, 97, 10, 0.42);
    background: linear-gradient(135deg, #eb610a, #d85b0d);
    color: #fffaf1;
    box-shadow: 0 16px 34px rgba(235, 97, 10, 0.18);
}

.detail-commerce-layout .cart-add-form + .secondary-button:hover {
    border-color: rgba(235, 97, 10, 0.58);
    background: linear-gradient(135deg, #f07318, #eb610a);
    color: #fffaf1;
}

.footer-social-links .social-pill-row {
    display: grid;
    gap: 10px;
}

.footer-social-links .social-pill,
.footer-social-links .social-pill.social-pill-icon {
    justify-content: flex-start;
    min-height: auto;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(255, 250, 241, 0.78);
    padding: 0;
    gap: 9px;
}

.footer-social-links .social-pill:hover,
.footer-social-links .social-pill:focus-visible {
    transform: none;
    background: transparent;
    color: #fffaf1;
}

.footer-social-links .social-pill-icon svg {
    width: 18px;
    height: 18px;
    border-radius: 0;
    background: transparent;
    fill: rgba(255, 250, 241, 0.72);
    padding: 0;
}

.footer-social-links .social-pill:hover svg,
.footer-social-links .social-pill:focus-visible svg {
    fill: #eb610a;
}

/* Product listing and detail premium alignment */
.product-listing-page,
.product-detail-page {
    background:
        radial-gradient(circle at 8% 6%, rgba(4, 114, 116, 0.14), transparent 28rem),
        radial-gradient(circle at 92% 10%, rgba(235, 97, 10, 0.08), transparent 24rem),
        linear-gradient(180deg, #fffaf1 0%, #f4fbf7 46%, #fffaf1 100%);
}

.product-listing-page {
    padding-top: clamp(34px, 5vw, 68px);
}

.catalog-hero {
    align-items: stretch;
    border-color: rgba(255, 250, 241, 0.18);
    background:
        radial-gradient(circle at 68% 42%, rgba(57, 184, 182, 0.22), transparent 26rem),
        radial-gradient(circle at 9% 12%, rgba(235, 97, 10, 0.12), transparent 20rem),
        linear-gradient(135deg, #032f31 0%, #047274 58%, #052425 100%);
    color: #fffaf1;
    box-shadow: 0 34px 110px rgba(4, 47, 49, 0.22);
}

.catalog-hero::before {
    content: "";
    position: absolute;
    inset: 14px;
    pointer-events: none;
    border: 1px solid rgba(255, 250, 241, 0.12);
    border-radius: 28px;
}

.catalog-hero h1,
.catalog-hero .hero-lead,
.catalog-hero .eyebrow,
.catalog-hero .breadcrumb,
.catalog-hero .breadcrumb a,
.catalog-hero .breadcrumb strong {
    color: #fffaf1;
}

.catalog-hero .hero-lead {
    max-width: 660px;
    color: rgba(255, 250, 241, 0.78);
}

.catalog-hero .secondary-button {
    border-color: rgba(255, 250, 241, 0.28);
    background: rgba(255, 250, 241, 0.08);
    color: #fffaf1;
}

.catalog-hero-panel {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: stretch;
    gap: 14px;
}

.catalog-hero-packshot,
.category-hero-visual {
    position: relative;
    display: grid;
    min-height: 100%;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 250, 241, 0.18);
    border-radius: 30px;
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 250, 241, 0.15), transparent 16rem),
        linear-gradient(145deg, rgba(255, 250, 241, 0.1), rgba(255, 250, 241, 0.035));
    color: #fffaf1;
    text-decoration: none;
    padding: clamp(22px, 3vw, 34px);
}

.catalog-hero-packshot::after,
.category-hero-visual::after {
    content: "";
    position: absolute;
    right: -52px;
    bottom: -52px;
    width: 180px;
    aspect-ratio: 1;
    border-radius: 999px;
    background: rgba(235, 97, 10, 0.2);
}

.catalog-hero-packshot img,
.category-hero-visual img {
    position: relative;
    z-index: 1;
    width: min(82%, 330px);
    max-height: 330px;
    object-fit: contain;
    filter: drop-shadow(0 34px 56px rgba(1, 31, 33, 0.34));
    transition: transform 220ms ease;
}

.catalog-hero-packshot:hover img {
    transform: translateY(-4px) scale(1.025);
}

.catalog-hero-packshot-badge,
.category-hero-visual span {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.13);
    color: #fffaf1;
    padding: 8px 12px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-hero-packshot strong,
.category-hero-visual figcaption {
    position: relative;
    z-index: 1;
    align-self: end;
    justify-self: stretch;
    border-top: 1px solid rgba(255, 250, 241, 0.14);
    margin-top: 18px;
    padding-top: 14px;
    color: rgba(255, 250, 241, 0.86);
    font-size: 0.94rem;
    font-weight: 560;
}

.catalog-hero-panel .catalog-social-card {
    border-color: rgba(255, 250, 241, 0.18);
    background: rgba(255, 250, 241, 0.08);
    box-shadow: none;
}

.catalog-hero-panel .catalog-social-card > span,
.catalog-hero-panel .catalog-social-card strong {
    color: #fffaf1;
}

.catalog-hero-panel .social-pill {
    border-color: rgba(255, 250, 241, 0.16);
    background: rgba(255, 250, 241, 0.1);
    color: #fffaf1;
}

.catalog-trust-strip {
    margin-top: -22px;
    position: relative;
    z-index: 2;
}

.catalog-trust-strip div,
.catalog-category-filter,
.catalog-product-card,
.catalog-empty-card {
    border-color: rgba(4, 114, 116, 0.13);
    background: rgba(255, 250, 241, 0.9);
    box-shadow: 0 20px 58px rgba(4, 47, 49, 0.08);
}

.catalog-trust-strip div {
    display: grid;
    gap: 4px;
    border-radius: 20px;
    backdrop-filter: blur(14px);
}

.catalog-category-filter {
    border-radius: 28px;
}

.category-chip {
    border-color: rgba(4, 114, 116, 0.14);
    background: #fffaf1;
}

.category-chip.is-active,
.category-chip:hover {
    background: #047274;
    color: #fffaf1;
}

.catalog-grid {
    align-items: stretch;
}

.catalog-product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: 28px;
    max-width: 440px;
}

.catalog-product-media {
    margin: 10px;
    border: 1px solid rgba(4, 114, 116, 0.08);
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 42%, rgba(4, 114, 116, 0.1), transparent 15rem),
        linear-gradient(135deg, #ffffff, #f7fbf8);
}

.catalog-product-media img {
    aspect-ratio: 1.18;
    padding: clamp(18px, 3vw, 34px);
}

.catalog-product-copy {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 8px 22px 22px;
}

.catalog-product-copy h2 {
    max-width: 92%;
    font-size: clamp(1.45rem, 2vw, 2rem) !important;
    line-height: 1.06;
}

.catalog-product-actions {
    margin-top: auto;
    padding-top: 6px;
}

.catalog-product-actions .primary-button,
.catalog-product-actions .secondary-button {
    min-height: 44px;
}

.product-detail-page {
    padding-top: clamp(34px, 5vw, 64px);
}

.detail-commerce-layout {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(4, 114, 116, 0.12);
    border-radius: 38px;
    background:
        radial-gradient(circle at 2% 8%, rgba(235, 97, 10, 0.09), transparent 20rem),
        radial-gradient(circle at 90% 18%, rgba(4, 114, 116, 0.13), transparent 25rem),
        rgba(255, 250, 241, 0.92);
    box-shadow: 0 34px 110px rgba(4, 47, 49, 0.13);
    padding: clamp(16px, 3vw, 30px);
}

.detail-commerce-layout .detail-gallery,
.detail-commerce-layout .detail-buy-card {
    border-color: rgba(4, 114, 116, 0.12);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: none;
    backdrop-filter: blur(14px);
}

.detail-commerce-layout .detail-gallery {
    border-radius: 32px;
    padding: clamp(10px, 1.8vw, 18px);
}

.detail-commerce-layout .detail-buy-card {
    border-radius: 32px;
}

.detail-gallery-main {
    border-color: rgba(4, 114, 116, 0.1);
    background:
        radial-gradient(circle at 50% 42%, rgba(4, 114, 116, 0.12), transparent 18rem),
        linear-gradient(145deg, #fffaf1 0%, #f7fbf8 100%);
}

.detail-gallery-kicker {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    border-radius: 999px;
    background: #047274;
    color: #fffaf1;
    padding: 8px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-gallery-main figcaption {
    background: rgba(255, 250, 241, 0.88);
}

.detail-buy-card .breadcrumb {
    width: fit-content;
    border: 1px solid rgba(4, 114, 116, 0.1);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.8);
    padding: 8px 12px;
}

.detail-buy-card h1 {
    max-width: 680px;
    color: #042f31;
    font-size: clamp(1.65rem, 2.35vw, 2.35rem) !important;
    line-height: 1.04;
}

.detail-lead {
    color: rgba(4, 47, 49, 0.74);
    font-size: 1.05rem;
}

.detail-price-row {
    border: 1px solid rgba(4, 114, 116, 0.1);
    border-radius: 22px;
    background: rgba(255, 250, 241, 0.78);
    padding: 16px;
}

.detail-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 8px 0 20px;
}

.detail-proof-strip div {
    border: 1px solid rgba(4, 114, 116, 0.1);
    border-radius: 18px;
    background: rgba(255, 250, 241, 0.72);
    padding: 12px;
}

.detail-proof-strip span {
    display: block;
    color: #eb610a;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.detail-proof-strip strong {
    display: block;
    margin-top: 5px;
    color: #042f31;
    font-size: 0.9rem;
    font-weight: 560;
}

.detail-benefit-list li,
.detail-service-list div,
.usage-card {
    border-color: rgba(4, 114, 116, 0.1);
    background: rgba(255, 250, 241, 0.74);
}

.detail-benefit-list li {
    border: 1px solid rgba(4, 114, 116, 0.1);
    border-radius: 18px;
    padding: 12px;
}

.detail-info-grid {
    border-radius: 32px;
    background:
        radial-gradient(circle at 12% 12%, rgba(4, 114, 116, 0.1), transparent 18rem),
        rgba(255, 250, 241, 0.88);
}

.detail-info-tabs {
    display: grid;
    grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
    border: 1px solid rgba(4, 114, 116, 0.12);
    border-radius: 32px;
    background:
        radial-gradient(circle at 12% 12%, rgba(4, 114, 116, 0.1), transparent 18rem),
        radial-gradient(circle at 90% 16%, rgba(235, 97, 10, 0.07), transparent 18rem),
        rgba(255, 250, 241, 0.9);
    box-shadow: 0 24px 72px rgba(4, 47, 49, 0.08);
}

.detail-tabs-copy {
    align-self: stretch;
    border: 1px solid rgba(4, 114, 116, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.62);
    padding: clamp(18px, 2.4vw, 28px);
}

.detail-tabs-copy h2 {
    margin: 6px 0 12px;
    color: #042f31;
    font-size: clamp(1.45rem, 2vw, 2rem) !important;
}

.detail-tabs-copy p:last-child {
    color: rgba(4, 47, 49, 0.68);
    line-height: 1.65;
}

.cart-page .section-shell,
.product-detail-page .section-shell {
    width: min(100% - 36px, 1320px);
}

.cart-summary-card,
.cart-checkout-card,
.detail-buy-card,
.detail-gallery {
    align-self: start;
}

.cart-summary-card,
.cart-checkout-card {
    padding: clamp(20px, 2.1vw, 28px);
}

.cart-checkout-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.cart-section-head {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.cart-section-head h1 {
    font-size: clamp(1.55rem, 2.2vw, 2.2rem) !important;
    letter-spacing: -0.02em !important;
}

.cart-line {
    grid-template-columns: 96px minmax(0, 1fr) 160px 132px;
    min-height: 138px;
    gap: 14px;
    padding: 14px;
}

.cart-line-media {
    width: 96px;
    height: 110px;
}

.cart-line-copy {
    min-width: 0;
}

.cart-line h2 {
    font-size: clamp(1.08rem, 1.45vw, 1.38rem) !important;
    letter-spacing: -0.018em !important;
}

.cart-line-controls {
    justify-self: stretch;
}

.cart-line-controls form {
    justify-content: flex-start;
}

.cart-line-controls .compact {
    min-height: 40px;
    padding: 9px 14px;
}

.cart-line-price {
    align-self: center;
}

.cart-order-card {
    margin-bottom: 8px;
}

.detail-commerce-layout {
    align-items: start;
}

.detail-buy-card {
    padding: clamp(22px, 2.4vw, 30px);
}

.detail-proof-strip.detail-purchase-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.cart-add-form {
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: end;
}

.cart-add-form .wide {
    min-height: 56px;
}

.cart-add-form + .secondary-button.wide {
    margin-top: 10px;
}

@media (max-width: 980px) {
    .cart-line {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .cart-line-controls,
    .cart-line-price {
        grid-column: 2;
        justify-items: start;
        text-align: left;
    }

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

@media (max-width: 760px) {
    h1,
    .hero-copy h1,
    .hero-carousel-section .hero-copy h1,
    .catalog-hero h1,
    .site-page-hero h1 {
        font-size: clamp(1.72rem, 7.6vw, 2.28rem) !important;
    }

    .cart-page .section-shell,
    .product-detail-page .section-shell {
        width: min(100% - 24px, 1320px);
    }

    .cart-line {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .cart-line-controls,
    .cart-line-price {
        grid-column: auto;
    }
}

.detail-tab-input {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    opacity: 0;
    pointer-events: none;
}

.detail-tab-nav {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border: 1px solid rgba(4, 114, 116, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    padding: 6px;
}

.detail-tab-nav label {
    cursor: pointer;
    border-radius: 999px;
    color: rgba(4, 47, 49, 0.72);
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

#detail-tab-usage:checked ~ .detail-tab-nav label[for="detail-tab-usage"],
#detail-tab-ingredients:checked ~ .detail-tab-nav label[for="detail-tab-ingredients"],
#detail-tab-warnings:checked ~ .detail-tab-nav label[for="detail-tab-warnings"],
#detail-tab-specs:checked ~ .detail-tab-nav label[for="detail-tab-specs"] {
    background: #047274;
    color: #fffaf1;
    box-shadow: 0 10px 26px rgba(4, 114, 116, 0.18);
}

.detail-tab-panels {
    grid-column: 2;
    min-height: 250px;
}

.detail-tab-panel {
    display: none;
    border: 1px solid rgba(4, 114, 116, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.66);
    color: rgba(4, 47, 49, 0.74);
    padding: clamp(18px, 2.4vw, 28px);
    line-height: 1.75;
}

.detail-tab-panel p + p {
    margin-top: 14px;
}

.detail-tab-specs-panel .feature-list {
    margin: 0;
}

#detail-tab-usage:checked ~ .detail-tab-panels .detail-tab-usage-panel,
#detail-tab-ingredients:checked ~ .detail-tab-panels .detail-tab-ingredients-panel,
#detail-tab-warnings:checked ~ .detail-tab-panels .detail-tab-warnings-panel,
#detail-tab-specs:checked ~ .detail-tab-panels .detail-tab-specs-panel {
    display: block;
}

.detail-analysis {
    margin-top: clamp(34px, 5vw, 70px);
}

@media (max-width: 1180px) {
    .catalog-hero {
        grid-template-columns: 1fr;
    }

    .catalog-hero-panel {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
    }

    .catalog-hero-packshot {
        min-height: 300px;
    }

    .detail-commerce-layout {
        padding: clamp(12px, 2vw, 20px);
    }
}

@media (max-width: 760px) {
    .product-listing-page,
    .product-detail-page {
        padding-top: 22px;
    }

    .catalog-hero,
    .detail-commerce-layout {
        border-radius: 28px;
    }

    .catalog-hero {
        padding: 24px;
    }

    .catalog-hero::before {
        inset: 10px;
        border-radius: 22px;
    }

    .catalog-hero-panel,
    .detail-proof-strip,
    .detail-info-tabs {
        grid-template-columns: 1fr;
    }

    .detail-tab-nav,
    .detail-tab-panels {
        grid-column: 1;
    }

    .detail-tab-nav {
        border-radius: 22px;
    }

    .catalog-trust-strip {
        margin-top: 14px;
    }

    .catalog-product-media img {
        aspect-ratio: 1.06;
    }

    .detail-commerce-layout .detail-gallery,
    .detail-commerce-layout .detail-buy-card {
        border-radius: 24px;
    }

    .detail-gallery-kicker {
        top: 12px;
        left: 12px;
        font-size: 0.66rem;
    }
}

/* Footer balance: keep social links compact and payment logos readable. */
.site-footer .footer-grid {
    grid-template-columns:
        minmax(220px, 1.08fr)
        minmax(190px, 0.82fr)
        minmax(190px, 0.78fr)
        minmax(230px, 1fr)
        minmax(250px, 0.92fr);
    align-items: start;
}

.site-footer .footer-social-links,
.site-footer .footer-payment-methods {
    align-self: start;
}

.site-footer .footer-social-links {
    align-content: start;
}

.site-footer .footer-social-links .social-pill-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 10px;
}

.site-footer .footer-social-links .social-pill,
.site-footer .footer-social-links .social-pill.social-pill-icon {
    display: inline-flex;
    flex: 0 0 auto;
    width: auto;
    min-height: 0;
    line-height: 1.25;
}

.site-footer .footer-payment-methods {
    min-width: 0;
    width: 100%;
    padding: 18px;
}

.site-footer .payment-card-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.site-footer .payment-card-brand {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 7px 10px;
}

.site-footer .payment-card-brand svg {
    width: min(100%, 96px);
    height: 26px;
}

.site-footer .payment-card-brand.secure {
    grid-column: span 2;
}

@media (max-width: 1180px) {
    .site-footer .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-footer .payment-card-row {
        grid-template-columns: repeat(2, minmax(0, 120px));
    }
}

/* Site page readability and branded dropdown contrast. */
.site-page-hero {
    color: #063f3f;
}

.site-page-hero .breadcrumb,
.site-page-hero .breadcrumb a,
.site-page-hero .eyebrow {
    color: rgba(4, 114, 116, 0.82);
}

.site-page-hero h1 {
    color: #063f3f !important;
    text-shadow: none;
}

.site-page-hero .hero-lead {
    max-width: 760px;
    color: rgba(6, 63, 63, 0.72);
}

.site-page-content {
    border-color: rgba(4, 114, 116, 0.13);
    background:
        radial-gradient(circle at 12% 0%, rgba(4, 114, 116, 0.08), transparent 18rem),
        rgba(255, 250, 241, 0.72);
    color: rgba(6, 63, 63, 0.82);
    box-shadow: 0 24px 70px rgba(4, 47, 49, 0.07);
}

.site-nav-dropdown {
    border-color: rgba(235, 97, 10, 0.36);
    background:
        linear-gradient(145deg, rgba(235, 97, 10, 0.98), rgba(204, 77, 4, 0.98));
    box-shadow: 0 28px 72px rgba(111, 43, 0, 0.22);
}

.site-nav-dropdown a {
    color: #fffaf1 !important;
    font-weight: 700;
}

.site-nav-dropdown a:hover,
.site-nav-dropdown a:focus-visible {
    background: rgba(4, 114, 116, 0.24);
    color: #ffffff !important;
}

.site-nav-group::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -18px;
    right: -18px;
    height: 18px;
}
