@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;
}

: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, "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif);
    --font-heading: var(--heading-font, "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;
}

.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 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 74% 32%, rgba(199, 149, 61, 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;
}

.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) {
    .site-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .menu-button {
        display: block;
    }

    .site-nav,
    .header-actions {
        grid-column: 1 / -1;
        display: none;
    }

    .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;
    }

    .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);
    }

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

    .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;
        width: min(100% - 12px, 1520px);
        min-height: 66px;
        margin-top: 8px;
        border-radius: 20px;
        padding: 9px 10px 9px 13px;
    }

    .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;
    }

    .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-line: rgba(42, 38, 29, 0.14);
    --lux-gold: #c7953d;
    --lux-muted: #746c5e;
}

body {
    background:
        linear-gradient(90deg, rgba(23, 22, 17, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, #f8f2e8 0%, #f3eadc 46%, #fbf7ef 100%);
    background-size: 72px 72px, 100% 100%;
    color: var(--lux-ink);
}

.site-header {
    top: 16px;
    border: 1px solid rgba(23, 22, 17, 0.1);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(250, 242, 228, 0.88)),
        rgba(255, 250, 241, 0.92);
    box-shadow: 0 18px 44px rgba(23, 22, 17, 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(23, 22, 17, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    padding: 4px;
}

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

.site-nav a:hover {
    background: rgba(199, 149, 61, 0.12);
    color: var(--lux-ink);
}

.primary-button,
.lot-form button {
    border-color: rgba(199, 149, 61, 0.28);
    background: linear-gradient(135deg, #d9aa52, #a87524);
    box-shadow: 0 16px 32px rgba(168, 117, 36, 0.22);
    color: #171103;
}

.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(23, 22, 17, 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 84% 28%, rgba(199, 149, 61, 0.22), 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: #d9aa52;
}

.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-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: #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: var(--lux-gold);
    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(23, 22, 17, 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(37, 112, 75, 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: #a87524;
}

.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 74% 32%, rgba(199, 149, 61, 0.18), 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 12% 12%, rgba(199, 149, 61, 0.22), 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: #d9aa52;
}

.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(37, 112, 75, 0.16);
    background: rgba(37, 112, 75, 0.1);
    color: #25704b;
}

.analysis-section .secondary-button {
    border-color: rgba(199, 149, 61, 0.36);
    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(199, 149, 61, 0.18), 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, #e6c06f, #b9852b);
    color: #1a1407;
    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, #d9aa52, #a87524);
    color: #171103;
}

/* 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(199, 149, 61, 0.16), transparent 22rem),
        linear-gradient(135deg, #0e3029 0%, #16483d 54%, #0a211d 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, 0.78fr) minmax(360px, 1fr);
}

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

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

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

.cart-line {
    display: grid;
    grid-template-columns: 124px 1fr;
    gap: 18px;
    align-items: center;
}

.cart-line img {
    width: 124px;
    height: 142px;
    object-fit: cover;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(32, 49, 45, 0.12);
}

.cart-line h1 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

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

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

.cart-totals {
    display: grid;
    gap: 10px;
    margin: 24px 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-actions {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.cart-actions form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: end;
}

.cart-actions label {
    display: grid;
    min-width: 150px;
    gap: 6px;
    color: var(--muted);
    font-weight: 720;
}

.cart-actions input {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    padding: 10px 12px;
}

@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 img {
        width: 100%;
        height: 220px;
    }
}

.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(199, 149, 61, 0.14), 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(230, 192, 111, 0.68);
    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: #e6c06f;
    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(230, 192, 111, 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: #e6c06f;
}

.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: #e6c06f;
    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;
    }
}
