/*
Theme Name:  Laser Forge Custom
Theme URI:   https://laserforge.studio
Description: Standalone theme for Laser Forge — handcrafted wooden cases for wargamers.
Author:      Laser Forge
Version:     11.64.2
Text Domain: laser-forge-custom
*/
/* ============================================================
   LASER FORGE — main.css
   ============================================================ */

/* ---- TOKENS ---- */
:root {
    --lf-bg0: #131210;
    --lf-bg1: #1c1a17;
    --lf-bg2: #252220;
    --lf-bg3: #302d28;
    --lf-bg4: #3a3630;

    --lf-acc: #8B5E3C;
    --lf-acc-hi: #B07D54;
    --lf-acc-lo: #4a2e18;

    --lf-gold: #C9A04A;
    --lf-gold-lo: #6b5020;

    --lf-t0: #EDE6DC;
    --lf-t1: #9A8F85;
    --lf-t2: #5c534d;

    --lf-border: #3a3530;
    --lf-border-hi: #5a4035;

    --f-serif: 'Cormorant Garamond', Georgia, serif;
    --f-mono: 'Space Mono', 'Courier New', monospace;

    --lf-r: 3px;
    --lf-tr: 0.2s ease;
    --lf-nav-h: 64px;
}

/* ---- RESET ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--lf-bg0);
    color: var(--lf-t0);
    font-family: var(--f-serif);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body:not(.single-product) {
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

a {
    color: var(--lf-acc-hi);
    text-decoration: none;
    transition: color var(--lf-tr);
}

a:hover {
    color: var(--lf-t0);
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4 {
    font-family: var(--f-serif);
    color: var(--lf-t0);
    line-height: 1.1;
    font-weight: 700;
}

h1 {
    font-size: clamp(36px, 5vw, 58px);
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(26px, 3.5vw, 40px);
}

h3 {
    font-size: clamp(20px, 2.5vw, 28px);
}

p {
    color: var(--lf-t1);
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.lf-eyebrow {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lf-acc);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.lf-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--lf-acc);
    flex-shrink: 0;
}

/* ---- LAYOUT ---- */
.lf-container {
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.lf-section {
    padding: 6rem 0;
}

.lf-section-alt {
    background: var(--lf-bg1);
}

.lf-section-divider {
    height: 0.5px;
    background: var(--lf-border);
}

/* ---- BUTTONS ---- */
.lf-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--lf-r);
    cursor: pointer;
    border: none;
    transition: background var(--lf-tr), border-color var(--lf-tr), color var(--lf-tr);
    white-space: nowrap;
    line-height: 1;
}

.lf-btn-primary {
    background: var(--lf-acc);
    color: #f0e6d8;
    padding: 14px 26px;
}

.lf-btn-primary:hover {
    background: var(--lf-acc-hi);
    color: #f0e6d8;
}

.lf-btn-secondary {
    background: transparent;
    color: var(--lf-acc-hi);
    border: 1px solid var(--lf-acc);
    padding: 13px 24px;
}

.lf-btn-secondary:hover {
    border-color: var(--lf-acc-hi);
    color: var(--lf-t0);
}

.lf-btn-ghost {
    background: transparent;
    color: var(--lf-t1);
    border: 0.5px solid var(--lf-border);
    padding: 11px 20px;
}

.lf-btn-ghost:hover {
    border-color: var(--lf-acc);
    color: var(--lf-t0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#lf-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--lf-nav-h);
    background: #131210;
    border-bottom: 0.5px solid var(--lf-border);
    overflow: visible;
}

.lf-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.lf-nav-logo img {
    height: 44px;
    width: auto;

    display: block;
}

.lf-nav-links {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.lf-nav-links a {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--lf-t1);
}

.lf-nav-links a:hover,
.lf-nav-links a.active {
    color: var(--lf-t0);
}

.lf-nav-cta {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--lf-acc);
    color: #f0e6d8;
    border: none;
    border-radius: var(--lf-r);
    padding: 9px 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background var(--lf-tr);
    white-space: nowrap;
}

.lf-nav-cta:hover {
    background: var(--lf-acc-hi);
    color: #f0e6d8;
}

/* Hamburger */
.lf-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 0.5px solid var(--lf-border);
    border-radius: var(--lf-r);
    padding: 8px 10px;
    cursor: pointer;
    width: 40px;
    height: 36px;
}

.lf-nav-toggle span {
    display: block;
    height: 1px;
    background: var(--lf-t1);
    transition: transform var(--lf-tr), opacity var(--lf-tr);
}

.lf-nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.lf-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.lf-nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 900px) {
    .lf-nav-toggle {
        display: flex;
    }

    .lf-nav-links {
        display: none;
        position: absolute;
        top: var(--lf-nav-h);
        left: 0;
        right: 0;
        background: rgba(19, 18, 16, 0.99);
        border-bottom: 0.5px solid var(--lf-border);
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
    }

    .lf-nav-links.open {
        display: flex;
    }

    .lf-nav-links a {
        display: block;
        padding: 0.85rem 2rem;
    }
}

/* ============================================================
   HERO
   ============================================================ */
#lf-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--lf-bg1);
    padding-top: var(--lf-nav-h);
}

.lf-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.lf-hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.lf-hero-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(19, 18, 16, 1.0) 36%,
            rgba(19, 18, 16, 0.55) 62%,
            rgba(19, 18, 16, 0.0) 100%);
}

.lf-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 2rem;
    max-width: 580px;
    margin-left: max(2rem, calc((100% - 1200px) / 2 + 2rem));
}

.lf-hero-title {
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 700;
    line-height: 1.04;
    color: var(--lf-t0);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.lf-hero-title em {
    color: var(--lf-acc-hi);
    font-style: italic;
}

.lf-hero-sub {
    font-size: 20px;
    color: var(--lf-t1);
    line-height: 1.75;
    margin-bottom: 0.85rem;
    max-width: 520px;
}

.lf-hero-tagline {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--lf-t2);
    letter-spacing: 0.05em;
    margin-bottom: 2.25rem;
}

.lf-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2.5rem;
}

.lf-hero-trust {
    padding-top: 1.5rem;
    border-top: 0.5px solid var(--lf-border);
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.lf-trust-item {
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lf-t2);
    display: flex;
    align-items: center;
    gap: 7px;
}

.lf-trust-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--lf-acc);
    flex-shrink: 0;
}

/* Slider controls removed — autoplay only */

@media (max-width: 600px) {
    .lf-hero-content {
        margin-left: 0;
        padding: 3rem 1.5rem;
        max-width: 100%;
    }

    .lf-hero-fade {
        background: linear-gradient(180deg,
                rgba(19, 18, 16, 0.15) 0%,
                rgba(19, 18, 16, 0.85) 45%,
                rgba(19, 18, 16, 1.0) 100%);
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
#lf-footer {
    background: var(--lf-bg1);
    border-top: 0.5px solid var(--lf-border);
    padding: 2rem 0 2rem;
    margin-top: auto;
}

.lf-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.lf-footer-logo {
    height: 44px !important;
    width: auto !important;
    max-width: 200px !important;
    display: block;
    margin-bottom: 1.25rem;
}

.lf-footer-tagline {
    font-size: 17px;
    color: var(--lf-t1);
    line-height: 1.7;
}

.lf-footer-col-head {
    font-family: var(--f-mono);
    font-size: 13px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #b07d54;
    margin-bottom: 1rem;
}

.lf-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.lf-footer-links a {
    font-size: 15px;
    color: var(--lf-t1);
    transition: color var(--lf-tr);
}

.lf-footer-links a:hover {
    color: var(--lf-t0);
}

.lf-footer-bar {
    border-top: 0.5px solid var(--lf-border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.lf-footer-bar p {
    font-family: var(--f-serif);
    font-size: 15px;
    color: var(--lf-t1);
    margin: 0;
}

.lf-footer-legal {
    display: flex;
    gap: 1.5rem;
}

.lf-footer-legal a {
    font-family: var(--f-mono);
    font-size: 9px;
    color: var(--lf-t1);
    letter-spacing: 0.08em;
}

.lf-footer-legal a:hover {
    color: var(--lf-t0);
}

@media (max-width: 700px) {
    .lf-footer-grid {
        grid-template-columns: 1fr;
    }

    .lf-footer-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
   PAGE (standard pages)
   ============================================================ */
.lf-page-content {
    padding: calc(var(--lf-nav-h) + 4rem) 2rem 6rem;
    min-height: 70vh;
}

.lf-page-title {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 0.5px solid var(--lf-border);
}

.lf-page-body {
    max-width: 720px;
}

.lf-page-body p {
    font-size: 16px;
    line-height: 1.8;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
#lf-features {
    background: var(--lf-bg0);
}

.lf-features-heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--lf-t0);
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.lf-features-heading em {
    color: var(--lf-acc-hi);
    font-style: italic;
}

.lf-features-intro {
    font-size: 19px;
    color: var(--lf-t1);
    line-height: 1.75;
    margin-bottom: 4rem;
}

.lf-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: var(--lf-border);
    border: 0.5px solid var(--lf-border);
    border-radius: var(--lf-r);
    overflow: hidden;
    margin-bottom: 4rem;
}

.lf-feature-card {
    background: var(--lf-bg2);
    padding: 2rem 1.75rem;
}

.lf-feature-label {
    font-family: var(--f-mono);
    font-size: 13px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--lf-acc);
    margin-bottom: 0.6rem;
}

.lf-feature-text {
    font-size: 18px;
    color: var(--lf-t1);
    line-height: 1.65;
    margin: 0;
}

.lf-features-callouts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    border-top: 0.5px solid var(--lf-border);
    padding-top: 3rem;
}

.lf-callout {
    padding: 1.75rem;
    background: var(--lf-bg1);
    border: 0.5px solid var(--lf-border);
    border-radius: var(--lf-r);
}

.lf-callout-heading {
    font-family: var(--f-mono);
    font-size: 13px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--lf-acc);
    margin-bottom: 0.75rem;
}

.lf-callout-text {
    font-size: 18px;
    color: var(--lf-t1);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 600px) {
    .lf-features-callouts {
        grid-template-columns: 1fr;
    }
}



/* ============================================================
   GALLERY CAROUSEL
   ============================================================ */
#lf-gallery {
    background: var(--lf-bg0);
}

.gc-wrap {
    --cols: 3;
    --gap: 3px;
    overflow: hidden;
    position: relative;
}

.gc-track {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - var(--gap) * (var(--cols) - 1)) / var(--cols));
    gap: var(--gap);
    will-change: transform;
}

.gc-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    background: var(--lf-bg2);
}

.gc-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(19, 18, 16, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    color: var(--lf-t0);
}

.gc-overlay svg {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gc-item:hover img {
    transform: scale(1.04);
}

.gc-item:hover .gc-overlay {
    background: rgba(19, 18, 16, 0.5);
}

.gc-item:hover .gc-overlay svg {
    opacity: 1;
}

/* ---- Lightbox ---- */
.lf-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 9, 8, 0.96);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lf-lightbox.open {
    display: flex;
}

.lf-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.lf-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: 0.5px solid rgba(237, 230, 220, 0.2);
    border-radius: var(--lf-r);
    color: var(--lf-t0);
    cursor: pointer;
    padding: 8px 14px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    transition: border-color var(--lf-transition);
}

.lf-lightbox-close:hover {
    border-color: rgba(237, 230, 220, 0.5);
}

.lf-lightbox-prev,
.lf-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 0.5px solid rgba(237, 230, 220, 0.2);
    border-radius: var(--lf-r);
    color: var(--lf-t0);
    cursor: pointer;
    padding: 12px 16px;
    font-size: 18px;
    line-height: 1;
    transition: border-color var(--lf-transition);
}

.lf-lightbox-prev {
    left: 1.5rem;
}

.lf-lightbox-next {
    right: 1.5rem;
}

.lf-lightbox-prev:hover,
.lf-lightbox-next:hover {
    border-color: rgba(237, 230, 220, 0.5);
}

.lf-lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: rgba(237, 230, 220, 0.35);
}

/* ============================================================
   DRAWERS SECTION
   ============================================================ */
#lf-drawers {
    background: var(--lf-bg1);
}

.lf-drawers-heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--lf-t0);
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.lf-drawers-heading em {
    color: var(--lf-acc-hi);
    font-style: italic;
}

.lf-drawers-intro {
    font-size: 19px;
    color: var(--lf-t1);
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 3.5rem;
}

.lf-drawers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--lf-border);
    border: 0.5px solid var(--lf-border);
    border-radius: var(--lf-r);
    overflow: hidden;
}

@media (max-width: 800px) {
    .lf-drawers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .lf-drawers-grid {
        grid-template-columns: 1fr;
    }
}

.lf-drawer-card {
    background: var(--lf-bg2);
    padding: 1.75rem;
    transition: background var(--lf-transition);
}

.lf-drawer-card:hover {
    background: var(--lf-bg3);
}

.lf-drawer-name {
    font-family: var(--f-mono);
    font-size: 13px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--lf-acc);
    margin-bottom: 0.5rem;
}

.lf-drawer-text {
    font-size: 18px;
    color: var(--lf-t1);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   CASES SECTION
   ============================================================ */
#lf-cases {
    background: var(--lf-bg0);
}

.lf-cases-heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--lf-t0);
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.lf-cases-heading em {
    color: var(--lf-acc-hi);
    font-style: italic;
}

.lf-cases-intro {
    font-size: 19px;
    color: var(--lf-t1);
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 3.5rem;
}

.lf-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--lf-border);
    border: 0.5px solid var(--lf-border);
    border-radius: var(--lf-r);
    overflow: hidden;
}

.lf-case-card {
    background: var(--lf-bg2);
    padding: 1.75rem;
    transition: background var(--lf-transition);
}

.lf-case-card:hover {
    background: var(--lf-bg3);
}

.lf-case-name {
    font-family: var(--f-mono);
    font-size: 13px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--lf-acc);
    margin-bottom: 0.35rem;
}

.lf-case-modules {
    font-family: var(--f-mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--lf-t0);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}

.lf-case-text {
    font-size: 18px;
    color: var(--lf-t1);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 800px) {
    .lf-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* Single-row carousel variant */
.gc-wrap--single .gc-track {
    grid-template-rows: 1fr;
}

/* Gallery item label */
.gc-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: linear-gradient(180deg, rgba(19, 18, 16, 0.88) 0%, rgba(19, 18, 16, 0) 100%);
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lf-t0);
    z-index: 3;
    pointer-events: none;
    display: block;
}

/* ============================================================
   STORY / ABOUT SECTION
   ============================================================ */
#lf-about {
    background: var(--lf-bg1);
}

.lf-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

.lf-story-header {
    position: sticky;
    top: 5rem;
}

.lf-story-heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--lf-t0);
    line-height: 1.08;
    margin-bottom: 0;
}

.lf-story-heading em {
    color: var(--lf-acc-hi);
    font-style: italic;
}

.lf-story-lead {
    font-size: 20px;
    color: var(--lf-t0);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.lf-story-text {
    font-size: 18px;
    color: var(--lf-t1);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.lf-story-quote {
    padding: 1.5rem;
    border-left: 2px solid var(--lf-acc);
    background: var(--lf-bg2);
    font-family: var(--f-mono);
    font-size: 13px;
    color: var(--lf-t0);
    line-height: 1.7;
    letter-spacing: 0.03em;
    margin: 2.5rem 0 0;
}

.lf-story-closing {
    border-top: 0.5px solid var(--lf-border);
    margin-top: 4rem;
    padding-top: 4rem;
    text-align: center;
}

.lf-story-closing-text {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--lf-t0);
    line-height: 1.15;
    margin: 0;
}

.lf-story-closing-text em {
    color: var(--lf-acc-hi);
    font-style: italic;
}

@media (max-width: 800px) {
    .lf-story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .lf-story-header {
        position: static;
    }
}

/* ============================================================
   DOCUMENT / LEGAL PAGE
   ============================================================ */
#lf-doc-page {
    background: #FAF7F3;
    min-height: 100vh;
    padding: 8rem 0 6rem;
}

.lf-doc-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lf-doc-header {
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 0.5px solid #D4CCC2;
}

.lf-doc-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a7d72;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color var(--lf-transition);
}

.lf-doc-back:hover {
    color: #9a6840;
}

.lf-doc-eyebrow {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7a4f2c;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lf-doc-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: #7a4f2c;
}

.lf-doc-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: #1a1714;
    line-height: 1.1;
    margin: 0;
}

/* Document body typography */
.lf-doc-body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4a4239;
    line-height: 1.8;
}

.lf-doc-body h1,
.lf-doc-body h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: #1a1714;
    margin: 3rem 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 0.5px solid #D4CCC2;
    line-height: 1.2;
}

.lf-doc-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 600;
    color: #1a1714;
    margin: 2rem 0 0.75rem;
    line-height: 1.3;
}

.lf-doc-body p {
    margin-bottom: 1.25rem;
    color: #4a4239;
}

.lf-doc-body a {
    color: #9a6840;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lf-doc-body a:hover {
    color: #1a1714;
}

.lf-doc-body ul,
.lf-doc-body ol {
    margin: 0 0 1.25rem 1.5rem;
    color: #4a4239;
}

.lf-doc-body li {
    margin-bottom: 0.4rem;
    line-height: 1.7;
}

.lf-doc-body blockquote {
    border-left: 2px solid #7a4f2c;
    background: #F0EBE3;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #1a1714;
}

.lf-doc-body strong {
    color: #1a1714;
    font-weight: 600;
}

.lf-doc-body em {
    font-style: italic;
}

.lf-doc-body hr {
    border: none;
    border-top: 0.5px solid #D4CCC2;
    margin: 2.5rem 0;
}

/* Tables */
.lf-doc-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 13px;
}

.lf-doc-body th {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7a4f2c;
    text-align: left;
    padding: 10px 14px;
    border-bottom: 0.5px solid #D4CCC2;
    background: #F0EBE3;
}

.lf-doc-body td {
    padding: 10px 14px;
    border-bottom: 0.5px solid #D4CCC2;
    color: #4a4239;
    vertical-align: top;
}

.lf-doc-body table thead tr:first-child th:empty {
    display: none;
}

.lf-doc-body table thead:has(th:empty) {
    display: none;
}

@media (max-width: 600px) {
    #lf-doc-page {
        padding: 6rem 0 4rem;
    }

    .lf-doc-body table {
        font-size: 13px;
    }

    .lf-doc-body th,
    .lf-doc-body td {
        padding: 8px 10px;
    }
}




/* ============================================================
   WOOCOMMERCE — minimal overrides only
   ============================================================ */

/* Main shop page wrapper — background handled by light mode CSS */

/* Content area padding and max-width */
.woocommerce-page .woocommerce,
.woocommerce-shop .woocommerce {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 2rem 2rem 6rem !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

/* Shop page top padding — account for fixed nav */
.woocommerce-page.woocommerce-shop {
    padding-top: 64px;
}

/* Page title */
.woocommerce-products-header__title,
h1.page-title {
    font-family: var(--f-serif) !important;
    font-size: clamp(28px, 4vw, 44px) !important;
    font-weight: 700 !important;
    color: var(--lf-t0) !important;
}

/* Result count */
.woocommerce-result-count {
    font-family: var(--f-mono) !important;
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--lf-t2) !important;
}

/* Ordering dropdown */
.woocommerce-ordering select {
    background: var(--lf-bg2) !important;
    border: 1px solid var(--lf-border) !important;
    border-radius: var(--lf-r) !important;
    color: var(--lf-t0) !important;
    font-family: var(--f-mono) !important;
    font-size: 11px !important;
    padding: 8px 14px !important;
    outline: none !important;
    cursor: pointer !important;
}

/* Product card background */
.woocommerce ul.products li.product {
    background: var(--lf-bg2) !important;
    border: 0.5px solid var(--lf-border) !important;
    border-radius: var(--lf-r) !important;
    overflow: hidden !important;
}

.woocommerce ul.products li.product:hover {
    background: var(--lf-bg3) !important;
}

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--f-serif) !important;
    font-size: 16px !important;
    color: var(--lf-t0) !important;
    text-align: center !important;
    padding: 1.25rem 1.25rem 0.5rem !important;
}

/* Price */
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .price .amount,
.woocommerce ul.products li.product .price bdi {
    font-family: var(--f-serif) !important;
    font-size: 18px !important;
    color: var(--lf-gold) !important;
}

.woocommerce ul.products li.product .price {
    display: block !important;
    text-align: center !important;
    padding: 0 1.25rem 0.75rem !important;
    font-family: var(--f-serif) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    font-style: normal !important;
    letter-spacing: 0 !important;
}

/* Buttons */
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--lf-acc) !important;
    color: #f0e6d8 !important;
    border: none !important;
    border-radius: var(--lf-r) !important;
    font-family: var(--f-mono) !important;
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    display: block !important;
    width: fit-content !important;
    margin: 0.75rem auto 1.5rem !important;
    padding: 12px 28px !important;
    font-size: 11px !important;
}

.woocommerce ul.products li.product a.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: var(--lf-acc-hi) !important;
    color: #f0e6d8 !important;
}

/* Shop header */
.woocommerce-products-header {
    margin-bottom: 2rem !important;
    padding-bottom: 1.5rem !important;
    border-bottom: 0.5px solid var(--lf-border) !important;
}

.woocommerce .woocommerce-breadcrumb {
    display: none !important;
}



.woocommerce-products-header__title,
h1.page-title {
    font-family: var(--f-serif) !important;
    font-size: clamp(28px, 4vw, 44px) !important;
    font-weight: 700 !important;
    color: var(--lf-t0) !important;
    line-height: 1.08 !important;
    margin: 0 !important;
}

/* Toolbar — result count + ordering on same line */
.woocommerce-result-count,
form.woocommerce-ordering {
    margin-bottom: 1.5rem !important;
}

/* Shop eyebrow */
.lf-shop-eyebrow {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lf-acc);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
}

.lf-shop-eyebrow-line {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--lf-acc);
    flex-shrink: 0;
}

/* Shop wrapper */
.lf-shop-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Product image placeholder — invert and tint to match dark theme */
.woocommerce ul.products li.product img.woocommerce-placeholder {
    filter: invert(1) sepia(0.3) saturate(0.4) brightness(0.35) !important;
    background: var(--lf-bg3) !important;
}

/* ============================================================
   WOOCOMMERCE — single product page
   ============================================================ */

/* Fix body overflow blocking sticky */
.single-product body,
body.single-product {
    overflow: visible !important;
    overflow-x: clip !important;
}

/* ============================================================
   WOOCOMMERCE — Single product
   ============================================================ */

/* Page wrapper — handled by lf-shop-wrapper */
.single-product .woocommerce {
    padding-top: 2rem !important;
}

/* Product layout */
.woocommerce div.product {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: start !important;
    width: 100% !important;
}

/* Allow sticky inside grid */
.woocommerce div.product>* {
    min-width: 0 !important;
}

.woocommerce div.product .woocommerce-product-gallery {
    grid-column: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
}

.woocommerce div.product .summary {
    grid-column: 2 !important;
    width: 100% !important;
    min-width: 0 !important;
}

/* Full width elements below grid */
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product #reviews {
    grid-column: 1 / -1 !important;
}

/* Product title */
.woocommerce div.product h1.product_title {
    font-family: var(--f-serif) !important;
    font-size: clamp(24px, 3.5vw, 38px) !important;
    font-weight: 700 !important;
    color: var(--lf-t0) !important;
    line-height: 1.1 !important;
    margin-bottom: 0.75rem !important;
}

/* Price */
.woocommerce div.product .price {
    font-family: var(--f-serif) !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    color: var(--lf-gold) !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
}

.woocommerce div.product .price .amount {
    color: var(--lf-gold) !important;
}

/* Stock status */
.woocommerce div.product .stock,
.woocommerce div.product p.availability {
    font-family: var(--f-mono) !important;
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--lf-t2) !important;
    margin-bottom: 1.5rem !important;
}

/* Short description */
.woocommerce div.product .woocommerce-product-details__short-description {
    font-family: var(--f-serif) !important;
    font-size: 15px !important;
    color: var(--lf-t1) !important;
    line-height: 1.75 !important;
    margin-bottom: 2rem !important;
    padding-bottom: 2rem !important;
    border-bottom: 0.5px solid var(--lf-border) !important;
}

/* Quantity input */
.woocommerce div.product form.cart .qty {
    background: var(--lf-bg2) !important;
    border: 1px solid var(--lf-border) !important;
    border-radius: var(--lf-r) !important;
    color: var(--lf-t0) !important;
    font-family: var(--f-mono) !important;
    font-size: 14px !important;
    padding: 10px 14px !important;
    width: 70px !important;
    text-align: center !important;
}

.woocommerce div.product form.cart .qty:focus {
    border-color: var(--lf-acc) !important;
    outline: none !important;
}

/* Add to cart button */
.woocommerce div.product form.cart .single_add_to_cart_button {
    margin-left: 0 !important;
    margin-top: 0 !important;
    background: var(--lf-acc) !important;
    color: #f0e6d8 !important;
    border: none !important;
    border-radius: var(--lf-r) !important;
    font-family: var(--f-mono) !important;
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 0 28px !important;
    height: 44px !important;
    line-height: 44px !important;
    cursor: pointer !important;
    transition: background var(--lf-transition) !important;
    display: inline-flex !important;
    align-items: center !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background: var(--lf-acc-hi) !important;
}

/* Cart form layout */
.woocommerce div.product form.cart {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    margin-bottom: 2rem !important;
    flex-wrap: nowrap !important;
}

/* Hide default quantity input — replaced by lf-qty-wrapper */
.woocommerce div.product form.cart>.quantity {
    display: none !important;
}

/* Quantity input — handled by lf-qty-wrapper below */

/* SKU and category */
.woocommerce div.product .product_meta {
    font-family: var(--f-mono) !important;
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
    color: var(--lf-t2) !important;
    padding-top: 1.5rem !important;
    border-top: 0.5px solid var(--lf-border) !important;
}

.woocommerce div.product .product_meta span,
.woocommerce div.product .product_meta a {
    color: var(--lf-t2) !important;
    text-transform: uppercase !important;
}

.woocommerce div.product .product_meta a:hover {
    color: var(--lf-acc-hi) !important;
}

/* Product gallery */
.woocommerce div.product .woocommerce-product-gallery__image img {
    border-radius: var(--lf-r) !important;
}

.woocommerce div.product .flex-control-nav,
.woocommerce div.product ol.flex-control-thumbs,
.woocommerce div.product .woocommerce-product-gallery__image~.woocommerce-product-gallery__image,
.woocommerce-product-gallery--with-images .flex-viewport~*,
.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__image:nth-child(n+2) {
    display: none !important;
}

.woocommerce div.product .flex-control-thumbs li img {
    border-radius: var(--lf-r) !important;
    opacity: 0.6 !important;
    transition: opacity var(--lf-transition) !important;
}

.woocommerce div.product .flex-control-thumbs li img:hover,
.woocommerce div.product .flex-control-thumbs li img.flex-active {
    opacity: 1 !important;
}

/* Breadcrumb */
.woocommerce .woocommerce-breadcrumb {
    font-family: var(--f-mono) !important;
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
    color: var(--lf-t2) !important;
    margin-bottom: 2rem !important;
    display: block !important;
}

.woocommerce .woocommerce-breadcrumb a {
    color: var(--lf-t2) !important;
}

.woocommerce .woocommerce-breadcrumb a:hover {
    color: var(--lf-acc-hi) !important;
}

/* Related products */
.woocommerce .related h2,
.woocommerce .upsells h2 {
    font-family: var(--f-serif) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--lf-t0) !important;
    margin-bottom: 2rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 0.5px solid var(--lf-border) !important;
}

@media (max-width: 768px) {
    .woocommerce div.product {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .woocommerce div.product .woocommerce-product-gallery,
    .woocommerce div.product .summary {
        grid-column: 1 !important;
    }
}

/* Product page — back button */
.lf-product-breadcrumb {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 0.5px solid var(--lf-border);
}

.lf-product-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lf-t2);
    text-decoration: none;
    transition: color var(--lf-transition);
}

.lf-product-back:hover {
    color: var(--lf-acc-hi);
}

/* Shop wrapper padding for product page */
.single-product .lf-shop-wrapper {
    padding-top: 8rem;
    padding-bottom: 6rem;
}

/* Gallery — main image full width */
.woocommerce div.product .woocommerce-product-gallery {
    position: static !important;
    width: 100% !important;
    align-self: start !important;
}

.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    width: 100% !important;
}

.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__image {
    width: 100% !important;
}

.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
    width: 100% !important;
    height: auto !important;
    border-radius: var(--lf-r) !important;
    display: block !important;
}

/* Custom quantity wrapper */
.lf-qty-wrapper {
    display: flex !important;
    align-items: stretch !important;
    border: 1px solid var(--lf-border) !important;
    border-radius: var(--lf-r) !important;
    overflow: hidden !important;
    height: 44px !important;
}

.lf-qty-btn {
    background: var(--lf-bg3) !important;
    border: none !important;
    color: var(--lf-t1) !important;
    font-size: 16px !important;
    width: 36px !important;
    height: 100% !important;
    cursor: pointer !important;
    transition: background var(--lf-transition), color var(--lf-transition) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

.lf-qty-btn:hover {
    background: var(--lf-acc) !important;
    color: #f0e6d8 !important;
}

.lf-qty-wrapper .qty {
    border: none !important;
    border-left: 1px solid var(--lf-border) !important;
    border-right: 1px solid var(--lf-border) !important;
    border-radius: 0 !important;
    width: 56px !important;
    text-align: center !important;
    height: 44px !important;
    line-height: 44px !important;
    padding: 0 !important;
    vertical-align: middle !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}

.lf-qty-wrapper .qty::-webkit-inner-spin-button,
.lf-qty-wrapper .qty::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    appearance: none !important;
    margin: 0 !important;
}

/* Force vertical alignment on cart elements */
.woocommerce div.product form.cart .lf-qty-wrapper {
    align-self: center !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
    align-self: center !important;
}

/* ============================================================
   CUSTOM SINGLE PRODUCT PAGE
   ============================================================ */
#lf-product {
    background: var(--lf-bg0);
    padding: 5rem 0 1.5rem;
}

.lf-product-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Back to shop */
.lf-product-breadcrumb {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 0.5px solid var(--lf-border);
}

.lf-product-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lf-t2);
    text-decoration: none;
    transition: color var(--lf-transition);
}

.lf-product-back:hover {
    color: var(--lf-acc-hi);
}

/* Grid */
.lf-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .lf-product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Image */
.lf-product-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--lf-r);
}

/* Info */
.lf-product-title {
    font-family: var(--f-serif) !important;
    font-size: clamp(24px, 3.5vw, 38px) !important;
    font-weight: 700 !important;
    color: var(--lf-t0) !important;
    line-height: 1.1 !important;
    margin: 0 0 0.75rem !important;
}

.lf-product-price {
    font-family: var(--f-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--lf-gold);
    margin-bottom: 1.5rem;
}

.lf-product-price .woocommerce-Price-amount {
    color: var(--lf-gold);
}

.lf-product-short-desc {
    font-family: var(--f-serif);
    font-size: 15px;
    color: var(--lf-t1);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.lf-product-divider {
    height: 0.5px;
    background: var(--lf-border);
    margin: 1.5rem 0;
}

.lf-product-stock {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lf-t2);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Cart form */
.lf-cart-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.lf-qty-wrap {
    display: flex;
    align-items: stretch;
    height: 44px;
    border: 1px solid var(--lf-border);
    border-radius: var(--lf-r);
    overflow: hidden;
}

.lf-qty-btn {
    background: var(--lf-bg3);
    border: none;
    color: var(--lf-t1);
    font-size: 16px;
    width: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--lf-transition), color var(--lf-transition);
    padding: 0;
    margin: 0;
}

.lf-qty-btn:hover {
    background: var(--lf-acc);
    color: #f0e6d8;
}

.lf-qty-input {
    background: var(--lf-bg2);
    border: none;
    border-left: 1px solid var(--lf-border);
    border-right: 1px solid var(--lf-border);
    color: var(--lf-t0);
    font-family: var(--f-mono);
    font-size: 14px;
    width: 56px;
    text-align: center;
    padding: 0;
    appearance: textfield;
    -moz-appearance: textfield;
}

.lf-qty-input:focus {
    outline: none;
}

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

.lf-add-to-cart {
    height: 44px;
    background: var(--lf-acc);
    color: #f0e6d8;
    border: none;
    border-radius: var(--lf-r);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0 28px;
    cursor: pointer;
    transition: background var(--lf-transition);
    display: flex;
    align-items: center;
}

.lf-add-to-cart:hover {
    background: var(--lf-acc-hi);
}

/* Meta */
.lf-product-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lf-t2);
}

.lf-product-meta a {
    color: var(--lf-t2);
}

.lf-product-meta a:hover {
    color: var(--lf-acc-hi);
}

/* Long description */
.lf-product-desc {
    font-family: var(--f-serif);
    font-size: 16px;
    color: var(--lf-t1);
    line-height: 1.8;
    padding-top: 3rem;
    border-top: 0.5px solid var(--lf-border);
    max-width: 780px;
}

/* ============================================================
   CUSTOM SHOP ARCHIVE PAGE
   ============================================================ */
#lf-shop {
    background: var(--lf-shop-bg, var(--lf-bg0));
    padding: 1.5rem 0 1.5rem;
    min-height: calc(100vh - var(--lf-nav-h));
}

.lf-shop-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lf-shop-header {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 0.5px solid var(--lf-border);
}

.lf-shop-title {
    font-family: var(--f-serif) !important;
    font-size: clamp(28px, 4vw, 44px) !important;
    font-weight: 700 !important;
    color: var(--lf-t0) !important;
    margin: 0 !important;
}

/* Section */
.lf-shop-section {
    margin-bottom: 4rem;
}

.lf-shop-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 0.5px solid var(--lf-border);
}

.lf-shop-section-title {
    font-family: var(--f-serif);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--lf-t0);
    margin: 0;
}

.lf-shop-section-link {
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lf-t2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--lf-transition);
}

.lf-shop-section-link:hover {
    color: var(--lf-acc-hi);
}

/* Product grid */
.lf-shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 800px) {
    .lf-shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .lf-shop-grid {
        grid-template-columns: 1fr;
    }
}

/* Product card */
.lf-shop-card {
    background: var(--lf-bg2);
    border: 0.5px solid var(--lf-border);
    border-radius: var(--lf-r);
    overflow: hidden;
    transition: background var(--lf-transition);
}

.lf-shop-card:hover {
    background: var(--lf-bg2);
}

.lf-shop-card:hover .lf-shop-card-body {
    background: var(--lf-bg3);
}

.lf-shop-card-image-link {
    display: block;
}

.lf-shop-card-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/2;
    object-fit: cover;
    filter: none;
}

.lf-shop-card-image.woocommerce-placeholder {
    filter: invert(1) sepia(0.3) saturate(0.4) brightness(0.35) !important;
}

.lf-shop-card-body {
    padding: 1rem 1.25rem;
    transition: background var(--lf-transition);
}

.lf-shop-card-title-link {
    text-decoration: none;
}

.lf-shop-card-title {
    font-family: var(--f-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--lf-t0);
    text-align: center;
    margin-bottom: 0.35rem;
    transition: color var(--lf-transition);
}

.lf-shop-card-title-link:hover .lf-shop-card-title {
    color: var(--lf-acc-hi);
}

.lf-shop-card-price {
    font-family: var(--f-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--lf-gold);
    text-align: center;
    margin-bottom: 0.75rem;
}

.lf-shop-card-price .woocommerce-Price-amount {
    color: var(--lf-gold);
}

.lf-shop-card-actions {
    display: flex;
    justify-content: center;
    padding-bottom: 0.25rem;
}

.lf-shop-card-btn {
    background: var(--lf-acc) !important;
    color: #f0e6d8 !important;
    border: none !important;
    border-radius: var(--lf-r) !important;
    font-family: var(--f-mono) !important;
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 9px 20px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: background var(--lf-transition) !important;
    margin: 0 0 0.75rem !important;
}

.lf-shop-card-btn:hover {
    background: var(--lf-acc-hi) !important;
    color: #f0e6d8 !important;
}

.lf-shop-card-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--lf-bg3);
}

/* Placeholder SVG in shop cards */
.lf-shop-card-image[src*="product-placeholder"] {
    background: var(--lf-bg3);
    aspect-ratio: 4/3;
    object-fit: contain;
    padding: 2rem;
}

/* Product gallery thumbnails */
.lf-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--lf-r);
    margin-bottom: 0.75rem;
}

.lf-product-thumbnails {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.lf-thumb {
    background: none;
    border: 1.5px solid var(--lf-border);
    border-radius: var(--lf-r);
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    transition: border-color var(--lf-transition);
}

.lf-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lf-thumb:hover {
    border-color: var(--lf-acc);
}

.lf-thumb.active {
    border-color: var(--lf-acc-hi);
}

/* ============================================================
   NAV CART ICON
   ============================================================ */
.lf-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lf-nav-shop {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--lf-t1);
    text-decoration: none;
    transition: color var(--lf-transition);
}

.lf-nav-shop-label {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.lf-nav-shop:hover {
    color: var(--lf-t0);
}

.lf-nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--lf-t1);
    text-decoration: none;
    transition: color var(--lf-transition);
}

.lf-nav-cart-label {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.lf-nav-cart:hover {
    color: var(--lf-t0);
}

.lf-nav-cart-count {
    background: var(--lf-acc);
    color: #f0e6d8;
    font-family: var(--f-mono);
    font-size: 9px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.lf-nav-cart-count:empty,
.lf-nav-cart-count[data-count="0"] {
    display: none !important;
}

/* ============================================================
   CART TOAST NOTIFICATION
   ============================================================ */
.lf-cart-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--lf-bg2);
    border: 0.5px solid var(--lf-border);
    border-left: 2px solid var(--lf-acc);
    border-radius: var(--lf-r);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 280px;
    max-width: 340px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transform: translateX(calc(100% + 2rem));
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
}

.lf-cart-toast.visible {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.lf-cart-toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--lf-acc);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #f0e6d8;
}

.lf-cart-toast-body {
    flex: 1;
    min-width: 0;
}

.lf-cart-toast-title {
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lf-acc);
    margin-bottom: 3px;
}

.lf-cart-toast-name {
    font-family: var(--f-serif);
    font-size: 14px;
    color: var(--lf-t0);
    line-height: 1.3;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lf-cart-toast-price {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--lf-gold);
    margin-bottom: 0;
}

.lf-cart-toast-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lf-t2);
    text-decoration: none;
    transition: color var(--lf-transition);
}

.lf-cart-toast-link:hover {
    color: var(--lf-acc-hi);
}

.lf-cart-toast-close {
    background: none;
    border: none;
    color: var(--lf-t2);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    transition: color var(--lf-transition);
    margin-top: -2px;
}

.lf-cart-toast-close:hover {
    color: var(--lf-t0);
}

/* Prevent WooCommerce from changing button appearance after add to cart */
.lf-shop-card-btn.added,
.lf-shop-card-btn.loading {
    background: var(--lf-acc) !important;
    color: #f0e6d8 !important;
    padding: 9px 20px !important;
}

.lf-shop-card-btn.added::after,
.lf-shop-card-btn.loading::after {
    display: none !important;
}

/* Hide "View cart" link that WooCommerce injects */
.lf-shop-card .added_to_cart {
    display: none !important;
}

/* Force button active state always */
.lf-shop-card-btn.disabled,
.lf-shop-card-btn[disabled] {
    opacity: 1 !important;
    cursor: pointer !important;
    background: var(--lf-acc) !important;
    color: #f0e6d8 !important;
}

/* Hide WooCommerce "added to cart" notice — we use toast instead */
.woocommerce-message[data-noticeype="success"],
.woocommerce .woocommerce-message {
    display: none !important;
}



/* ============================================================
   WOOCOMMERCE — LIGHT MODE (shop, product, cart, checkout)
   ============================================================ */

.woocommerce-shop,
.single-product,
.woocommerce-cart,
.woocommerce-checkout {
    --lf-shop-bg: #FAF7F3;
    --lf-shop-bg2: #F0EBE3;
    --lf-shop-bg3: #E8E1D8;
    --lf-shop-border: #D4CCC2;
    --lf-shop-t0: #1a1714;
    --lf-shop-t1: #4a4239;
    --lf-shop-t2: #8a7d72;
    --lf-shop-acc: #7a4f2c;
    --lf-shop-acc-hi: #9a6840;
    --lf-shop-gold: #9a6d1a;
}

/* Page background */
.woocommerce-shop #lf-woo-page,
.woocommerce-shop #lf-shop,
.single-product #lf-product,
.woocommerce-cart #lf-woo-page,
.woocommerce-checkout #lf-woo-page {
    background: var(--lf-shop-bg) !important;
}

/* Base text */
.woocommerce-shop .lf-woo-page-inner,
.single-product .lf-product-wrap,
.woocommerce-cart .lf-woo-page-inner,
.woocommerce-checkout .lf-woo-page-inner {
    color: var(--lf-shop-t0);
}

/* ============================================================
   WOOCOMMERCE — CART PAGE
   ============================================================ */

#lf-woo-page {
    background: var(--lf-bg0);
    padding: 5rem 0 3rem;
}

.lf-woo-page-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Wrapper */
.lf-cart-wrap {
    width: 100%;
}

/* Header */
.lf-cart-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 0.5px solid var(--lf-border);
}

.lf-cart-title {
    font-family: var(--f-serif);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--lf-t0);
    margin: 0;
}

/* Empty cart */
.lf-cart-empty {
    text-align: center;
    padding: 4rem 0;
    color: var(--lf-t1);
    font-family: var(--f-serif);
    font-size: 16px;
}

.lf-cart-empty .lf-btn-primary {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Cart table */
.lf-cart-table {
    width: 100%;
    background: var(--lf-bg2);
    border: 0.5px solid var(--lf-border);
    border-radius: var(--lf-r);
    overflow: hidden;
    margin-bottom: 1rem;
}

.lf-cart-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 40px;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.5rem;
    border-bottom: 0.5px solid var(--lf-border);
}

.lf-cart-col-category {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--lf-t2);
    text-transform: uppercase;
}

.lf-cart-row:last-child {
    border-bottom: none;
}

/* Head row */
.lf-cart-head {
    background: var(--lf-bg3);
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lf-t2);
}

.lf-cart-head .lf-cart-col-price,
.lf-cart-head .lf-cart-col-subtotal,
.lf-cart-head .lf-cart-col-qty,
.lf-cart-head .lf-cart-col-remove {
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lf-t2);
}

/* Product col */
.lf-cart-col-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lf-cart-item-image-link {
    flex-shrink: 0;
}

.lf-cart-item-image {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--lf-r);
    display: block;
}

.lf-cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lf-cart-item-name {
    font-family: var(--f-serif);
    font-size: 15px;
    color: var(--lf-t0);
    text-decoration: none;
    transition: color var(--lf-transition);
}

.lf-cart-item-name:hover {
    color: var(--lf-acc-hi);
}

.lf-cart-item-sku {
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lf-t2);
}

/* Price col */
.lf-cart-col-price,
.lf-cart-col-subtotal {
    font-family: var(--f-mono);
    font-size: 14px;
    color: var(--lf-gold);
}

.lf-cart-col-price .woocommerce-Price-amount,
.lf-cart-col-subtotal .woocommerce-Price-amount {
    color: var(--lf-gold);
}

/* Quantity col */
.lf-cart-col-qty .lf-qty-wrap {
    display: flex;
    align-items: stretch;
    height: 40px;
    border: 1px solid var(--lf-border);
    border-radius: var(--lf-r);
    overflow: hidden;
    width: fit-content;
}

.lf-cart-col-qty .lf-qty-btn {
    background: var(--lf-bg3);
    border: none;
    color: var(--lf-t1);
    font-size: 16px;
    width: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--lf-transition), color var(--lf-transition);
    padding: 0;
}

.lf-cart-col-qty .lf-qty-btn:hover {
    background: var(--lf-acc);
    color: #f0e6d8;
}

.lf-cart-col-qty .lf-qty-input {
    background: var(--lf-bg2);
    border: none;
    border-left: 1px solid var(--lf-border);
    border-right: 1px solid var(--lf-border);
    color: var(--lf-t0);
    font-family: var(--f-mono);
    font-size: 13px;
    width: 48px;
    text-align: center;
    padding: 0;
    appearance: textfield;
    -moz-appearance: textfield;
}

.lf-cart-col-qty .lf-qty-input::-webkit-inner-spin-button,
.lf-cart-col-qty .lf-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

.lf-cart-col-qty .lf-qty-input:focus {
    outline: none;
}

/* Remove col */
.lf-cart-remove {
    color: var(--lf-t2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--lf-transition);
    text-decoration: none;
}

.lf-cart-remove:hover {
    color: #c0392b;
}

/* Actions row */
.lf-cart-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 3rem;
}

.lf-cart-update {
    background: none;
    border: 0.5px solid var(--lf-border);
    border-radius: var(--lf-r);
    color: var(--lf-t2);
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 18px;
    cursor: pointer;
    transition: all var(--lf-transition);
}

.lf-cart-update:hover {
    border-color: var(--lf-acc);
    color: var(--lf-t0);
}

/* Cart totals */
.lf-cart-totals-wrap {
    max-width: 560px;
    margin-left: auto;
}

.lf-cart-totals-wrap .cart_totals h2 {
    font-family: var(--f-serif) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--lf-t0) !important;
    margin-bottom: 1rem !important;
}

.lf-cart-totals-wrap table.shop_table {
    background: var(--lf-bg2) !important;
    border: 0.5px solid var(--lf-border) !important;
    border-radius: var(--lf-r) !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    width: 100% !important;
    margin-bottom: 1rem !important;
}

.lf-cart-totals-wrap table.shop_table th {
    font-family: var(--f-mono) !important;
    font-size: 9px !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--lf-t2) !important;
    background: transparent !important;
    border-bottom: 0.5px solid var(--lf-border) !important;
    padding: 0.875rem 1.25rem !important;
    font-weight: 400 !important;
    width: 40% !important;
}

.lf-cart-totals-wrap table.shop_table td {
    background: transparent !important;
    border-bottom: 0.5px solid var(--lf-border) !important;
    color: var(--lf-t0) !important;
    padding: 0.875rem 1.25rem !important;
    font-family: var(--f-mono) !important;
    font-size: 13px !important;
    white-space: nowrap !important;
}

.lf-cart-totals-wrap table.shop_table tr:last-child th,
.lf-cart-totals-wrap table.shop_table tr:last-child td {
    border-bottom: none !important;
}

.lf-cart-totals-wrap .order-total td {
    color: var(--lf-gold) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.lf-cart-totals-wrap .wc-proceed-to-checkout .checkout-button {
    background: var(--lf-acc) !important;
    color: #f0e6d8 !important;
    border: none !important;
    border-radius: var(--lf-r) !important;
    font-family: var(--f-mono) !important;
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 14px 28px !important;
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    transition: background var(--lf-transition) !important;
}

.lf-cart-totals-wrap .wc-proceed-to-checkout .checkout-button:hover {
    background: var(--lf-acc-hi) !important;
    color: #f0e6d8 !important;
}

/* Shipping */
.lf-cart-totals-wrap .shipping-calculator-button {
    font-family: var(--f-mono) !important;
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
    color: var(--lf-t2) !important;
}

.lf-cart-totals-wrap .shipping-calculator-button:hover {
    color: var(--lf-acc-hi) !important;
}

@media (max-width: 768px) {
    .lf-cart-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .lf-cart-head {
        display: none;
    }

    .lf-cart-col-price,
    .lf-cart-col-qty,
    .lf-cart-col-subtotal,
    .lf-cart-col-remove {
        grid-column: auto;
    }

    .lf-cart-totals-wrap {
        max-width: 100%;
    }
}

/* Update cart button — active state when qty changed */
.lf-cart-update--active {
    border-color: var(--lf-acc) !important;
    color: var(--lf-t0) !important;
    background: var(--lf-acc) !important;
}

.lf-cart-update--active:hover {
    background: var(--lf-acc-hi) !important;
}

/* WooCommerce notices */
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
    background: var(--lf-bg2) !important;
    border-top-color: var(--lf-acc) !important;
    color: var(--lf-t1) !important;
    font-family: var(--f-serif) !important;
    font-size: 15px !important;
    box-shadow: none !important;
    list-style: none !important;
    padding: 1rem 1.5rem 1rem 3.5rem !important;
    border-radius: var(--lf-r) !important;
    margin-bottom: 1.5rem !important;
    position: relative !important;
}

.woocommerce-error::before {
    position: absolute !important;
    left: 1.25rem !important;
    top: 1rem !important;
    line-height: 1.5 !important;
}

.woocommerce-info::before,
.woocommerce-message::before {
    color: var(--lf-acc) !important;
}

.woocommerce-info a.button,
.woocommerce-message a.button {
    background: var(--lf-acc) !important;
    color: #f0e6d8 !important;
    border: none !important;
    border-radius: var(--lf-r) !important;
    font-family: var(--f-mono) !important;
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 10px 20px !important;
    float: none !important;
    display: inline-block !important;
    margin-left: 1rem !important;
}

.woocommerce-info a.button:hover,
.woocommerce-message a.button:hover {
    background: var(--lf-acc-hi) !important;
}

/* Hide WooCommerce notice icon */
.woocommerce-info::before {
    display: none !important;
}

/* Hide shipping calculator in cart */
.shipping-calculator-form,
.shipping-calculator-button {
    display: none !important;
}

/* Hide shipping row only in cart totals, not checkout */
.woocommerce-cart .woocommerce-shipping-totals,
.woocommerce-cart tr.shipping {
    display: none !important;
}

/* ============================================================
   WOOCOMMERCE — CHECKOUT PAGE
   ============================================================ */

/* Form fields */
.woocommerce-checkout .woocommerce-input-wrapper input,
.woocommerce-checkout .woocommerce-input-wrapper textarea,
.woocommerce-checkout .woocommerce-input-wrapper select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: var(--lf-bg3) !important;
    border: 1px solid var(--lf-border) !important;
    border-radius: var(--lf-r) !important;
    color: var(--lf-t0) !important;
    font-family: var(--f-serif) !important;
    font-size: 15px !important;
    padding: 10px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    outline: none !important;
    transition: border-color var(--lf-transition) !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--lf-acc) !important;
}

.woocommerce form .form-row input.input-text::placeholder,
.woocommerce form .form-row textarea::placeholder {
    color: var(--lf-t2) !important;
}

/* Field labels */
.woocommerce form .form-row label {
    font-family: var(--f-mono) !important;
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--lf-t2) !important;
    margin-bottom: 6px !important;
    display: block !important;
}

/* Required asterisk */
.woocommerce form .form-row label abbr {
    color: var(--lf-acc) !important;
    text-decoration: none !important;
}

/* Section headings */
.woocommerce-checkout h3,
.woocommerce-checkout #order_review_heading {
    font-family: var(--f-serif) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--lf-t0) !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 0.5px solid var(--lf-border) !important;
}

/* Coupon notice */
.woocommerce-checkout .woocommerce-info {
    display: none !important;
}

/* Ship to different address */
.woocommerce-shipping-fields h3 label {
    font-family: var(--f-serif) !important;
    font-size: 18px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--lf-t1) !important;
}

/* Order review table */
.woocommerce-checkout-review-order table.shop_table {
    background: var(--lf-bg2) !important;
    border: 0.5px solid var(--lf-border) !important;
    border-radius: var(--lf-r) !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
}

.woocommerce-checkout-review-order table.shop_table th {
    font-family: var(--f-mono) !important;
    font-size: 9px !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--lf-t2) !important;
    background: var(--lf-bg3) !important;
    border-bottom: 0.5px solid var(--lf-border) !important;
    padding: 0.875rem 1.25rem !important;
    font-weight: 400 !important;
}

.woocommerce-checkout-review-order table.shop_table td {
    background: transparent !important;
    border-bottom: 0.5px solid var(--lf-border) !important;
    color: var(--lf-t0) !important;
    padding: 0.875rem 1.25rem !important;
    font-family: var(--f-serif) !important;
    font-size: 15px !important;
}

.woocommerce-checkout-review-order table.shop_table tr:last-child td {
    border-bottom: none !important;
}

.woocommerce-checkout-review-order table .order-total td {
    color: var(--lf-gold) !important;
    font-family: var(--f-mono) !important;
    font-weight: 700 !important;
}

/* Payment methods */
.woocommerce-checkout #payment {
    background: var(--lf-bg2) !important;
    border: 0.5px solid var(--lf-border) !important;
    border-radius: var(--lf-r) !important;
}

.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 0.5px solid var(--lf-border) !important;
    padding: 1.25rem !important;
    margin: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
    padding: 0.75rem 0 !important;
    list-style: none !important;
    border-bottom: 0.5px solid var(--lf-border) !important;
}

.woocommerce-checkout #payment ul.payment_methods li:last-child {
    border-bottom: none !important;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    font-family: var(--f-serif) !important;
    font-size: 15px !important;
    color: var(--lf-t0) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    cursor: pointer !important;
}

.woocommerce-checkout #payment ul.payment_methods li img {
    max-height: 24px !important;
    width: auto !important;
    vertical-align: middle !important;
    margin-left: 8px !important;
}

/* Payment box — description */
.woocommerce-checkout #payment div.payment_box {
    background: transparent !important;
    color: var(--lf-t1) !important;
    font-family: var(--f-serif) !important;
    font-size: 14px !important;
    border-radius: 0 !important;
    border-left: 2px solid var(--lf-acc) !important;
    margin: 0.75rem 0 0 1.75rem !important;
    padding: 0.5rem 1rem !important;
}

.woocommerce-checkout #payment div.payment_box::before {
    display: none !important;
}

.woocommerce-checkout #payment div.payment_box p {
    margin: 0 !important;
    color: var(--lf-t1) !important;
}

/* Place order button */
.woocommerce-checkout #payment .place-order {
    padding: 1.25rem !important;
}

.woocommerce-checkout #payment #place_order {
    background: var(--lf-acc) !important;
    color: #f0e6d8 !important;
    border: none !important;
    border-radius: var(--lf-r) !important;
    font-family: var(--f-mono) !important;
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 14px 28px !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: background var(--lf-transition) !important;
}

.woocommerce-checkout #payment #place_order:hover {
    background: var(--lf-acc-hi) !important;
}

/* Privacy policy note */
.woocommerce-checkout .woocommerce-privacy-policy-text {
    font-family: var(--f-serif) !important;
    font-size: 13px !important;
    color: var(--lf-t2) !important;
    margin-bottom: 1rem !important;
}

.woocommerce-checkout .woocommerce-privacy-policy-text a {
    color: var(--lf-acc-hi) !important;
}

/* Shipping methods */
.woocommerce-shipping-methods li {
    list-style: none !important;
    padding: 0.5rem 0 !important;
    font-family: var(--f-serif) !important;
    font-size: 15px !important;
    color: var(--lf-t0) !important;
}

.woocommerce-shipping-methods li label {
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 15px !important;
    color: var(--lf-t0) !important;
}

/* ============================================================
   LIGHT MODE — SHOP
   ============================================================ */
.woocommerce-shop .lf-shop-section-title,
.woocommerce-shop .lf-shop-card-title {
    color: var(--lf-shop-t0) !important;
}

.woocommerce-shop .lf-shop-section-header {
    border-bottom-color: var(--lf-shop-border) !important;
}

.woocommerce-shop .lf-shop-section-link {
    color: var(--lf-shop-t2) !important;
}

.woocommerce-shop .lf-shop-card {
    background: #fff !important;
    border-color: var(--lf-shop-border) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06) !important;
}

.woocommerce-shop .lf-shop-card:hover {
    background: #fff !important;
}

.woocommerce-shop .lf-shop-card:hover .lf-shop-card-body {
    background: var(--lf-shop-bg2) !important;
}

.woocommerce-shop .lf-shop-card-body {
    background: #fff !important;
}

.woocommerce-shop .lf-shop-card-title {
    color: var(--lf-shop-t0) !important;
}

.woocommerce-shop .lf-shop-card-price,
.woocommerce-shop .lf-shop-card-price .woocommerce-Price-amount {
    color: var(--lf-shop-gold) !important;
}

.woocommerce-shop .lf-shop-card-btn {
    background: var(--lf-shop-acc) !important;
}

.woocommerce-shop .lf-shop-card-btn:hover {
    background: var(--lf-shop-acc-hi) !important;
}

.woocommerce-shop .lf-shop-card-placeholder {
    background: var(--lf-shop-bg2) !important;
}

.woocommerce-shop .lf-shop-card-image[src*="product-placeholder"] {
    background: var(--lf-shop-bg2) !important;
    filter: none !important;
    opacity: 0.4 !important;
}

/* ============================================================
   LIGHT MODE — SINGLE PRODUCT
   ============================================================ */
.single-product #lf-product {
    background: var(--lf-shop-bg) !important;
}

.single-product .lf-product-title {
    color: var(--lf-shop-t0) !important;
}

.single-product .lf-product-price,
.single-product .lf-product-price .woocommerce-Price-amount {
    color: var(--lf-shop-gold) !important;
}

.single-product .lf-product-short-desc {
    color: var(--lf-shop-t1) !important;
}

.single-product .lf-product-divider {
    background: var(--lf-shop-border) !important;
}

.single-product .lf-product-stock {
    color: var(--lf-shop-t2) !important;
}

.single-product .lf-product-back {
    color: var(--lf-shop-t2) !important;
}

.single-product .lf-product-back:hover {
    color: var(--lf-shop-acc-hi) !important;
}

.single-product .lf-product-breadcrumb {
    border-bottom-color: var(--lf-shop-border) !important;
}

.single-product .lf-qty-wrap {
    border-color: var(--lf-shop-border) !important;
}

.single-product .lf-qty-btn {
    background: var(--lf-shop-bg2) !important;
    color: var(--lf-shop-t1) !important;
}

.single-product .lf-qty-btn:hover {
    background: var(--lf-shop-acc) !important;
    color: #fff !important;
}

.single-product .lf-qty-input {
    background: #fff !important;
    border-left-color: var(--lf-shop-border) !important;
    border-right-color: var(--lf-shop-border) !important;
    color: var(--lf-shop-t0) !important;
}

.single-product .lf-add-to-cart {
    background: var(--lf-shop-acc) !important;
}

.single-product .lf-add-to-cart:hover {
    background: var(--lf-shop-acc-hi) !important;
}

.single-product .lf-product-meta {
    color: var(--lf-shop-t2) !important;
    border-top-color: var(--lf-shop-border) !important;
}

.single-product .lf-product-desc {
    color: var(--lf-shop-t1) !important;
    border-top-color: var(--lf-shop-border) !important;
}

.single-product .lf-thumb {
    border-color: var(--lf-shop-border) !important;
}

.single-product .lf-thumb:hover,
.single-product .lf-thumb.active {
    border-color: var(--lf-shop-acc) !important;
}

/* ============================================================
   LIGHT MODE — CART
   ============================================================ */
.woocommerce-cart .lf-cart-title {
    color: var(--lf-shop-t0) !important;
}

.woocommerce-cart .lf-cart-header {
    border-bottom-color: var(--lf-shop-border) !important;
}

.woocommerce-cart .lf-product-back {
    color: var(--lf-shop-t2) !important;
}

.woocommerce-cart .lf-cart-table {
    background: #fff !important;
    border-color: var(--lf-shop-border) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06) !important;
}

.woocommerce-cart .lf-cart-head {
    background: var(--lf-shop-bg2) !important;
    color: var(--lf-shop-t2) !important;
}

.woocommerce-cart .lf-cart-head .lf-cart-col-price,
.woocommerce-cart .lf-cart-head .lf-cart-col-subtotal,
.woocommerce-cart .lf-cart-head .lf-cart-col-qty,
.woocommerce-cart .lf-cart-head .lf-cart-col-category {
    font-size: 9px !important;
    color: var(--lf-shop-t2) !important;
    letter-spacing: 0.12em !important;
}

.woocommerce-cart .lf-cart-col-category {
    color: var(--lf-shop-t2) !important;
}

.woocommerce-cart .lf-cart-row {
    border-bottom-color: var(--lf-shop-border) !important;
}

.woocommerce-cart .lf-cart-item-name {
    color: var(--lf-shop-t0) !important;
}

.woocommerce-cart .lf-cart-item-sku {
    color: var(--lf-shop-t2) !important;
}

.woocommerce-cart .lf-cart-col-price,
.woocommerce-cart .lf-cart-col-subtotal,
.woocommerce-cart .lf-cart-col-price .woocommerce-Price-amount,
.woocommerce-cart .lf-cart-col-subtotal .woocommerce-Price-amount {
    color: var(--lf-shop-gold) !important;
}

.woocommerce-cart .lf-cart-col-qty .lf-qty-wrap {
    border-color: var(--lf-shop-border) !important;
}

.woocommerce-cart .lf-cart-col-qty .lf-qty-btn {
    background: var(--lf-shop-bg2) !important;
    color: var(--lf-shop-t1) !important;
}

.woocommerce-cart .lf-cart-col-qty .lf-qty-btn:hover {
    background: var(--lf-shop-acc) !important;
    color: #fff !important;
}

.woocommerce-cart .lf-cart-col-qty .lf-qty-input {
    background: #fff !important;
    border-color: var(--lf-shop-border) !important;
    color: var(--lf-shop-t0) !important;
}

.woocommerce-cart .lf-cart-remove {
    color: var(--lf-shop-t2) !important;
}

.woocommerce-cart .lf-cart-update {
    border-color: var(--lf-shop-border) !important;
    color: var(--lf-shop-t2) !important;
}

.woocommerce-cart .lf-cart-update--active {
    background: var(--lf-shop-acc) !important;
    border-color: var(--lf-shop-acc) !important;
    color: #fff !important;
}

.woocommerce-cart .lf-cart-totals-wrap table.shop_table {
    background: #fff !important;
    border-color: var(--lf-shop-border) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06) !important;
}

.woocommerce-cart .lf-cart-totals-wrap table.shop_table th {
    color: var(--lf-shop-t2) !important;
}

.woocommerce-cart .lf-cart-totals-wrap table.shop_table td {
    color: var(--lf-shop-t0) !important;
    border-bottom-color: var(--lf-shop-border) !important;
}

.woocommerce-cart .lf-cart-totals-wrap .order-total td {
    color: var(--lf-shop-gold) !important;
}

.woocommerce-cart .lf-cart-totals-wrap .cart_totals h2 {
    color: var(--lf-shop-t0) !important;
}

.woocommerce-cart .lf-cart-totals-wrap .wc-proceed-to-checkout .checkout-button {
    background: var(--lf-shop-acc) !important;
}

.woocommerce-cart .lf-cart-totals-wrap .wc-proceed-to-checkout .checkout-button:hover {
    background: var(--lf-shop-acc-hi) !important;
}

/* ============================================================
   LIGHT MODE — CHECKOUT
   ============================================================ */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout #order_review_heading {
    color: var(--lf-shop-t0) !important;
    border-bottom-color: var(--lf-shop-border) !important;
}

.woocommerce-checkout form .form-row label {
    color: var(--lf-shop-t2) !important;
}

.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea,
.woocommerce-checkout form .form-row select {
    background: #fff !important;
    border-color: var(--lf-shop-border) !important;
    color: var(--lf-shop-t0) !important;
}

.woocommerce-checkout form .form-row input.input-text:focus,
.woocommerce-checkout form .form-row textarea:focus {
    border-color: var(--lf-shop-acc) !important;
}

.woocommerce-checkout-review-order table.shop_table {
    background: #fff !important;
    border-color: var(--lf-shop-border) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06) !important;
}

.woocommerce-checkout-review-order table.shop_table th {
    background: var(--lf-shop-bg2) !important;
    color: var(--lf-shop-t2) !important;
    border-bottom-color: var(--lf-shop-border) !important;
}

.woocommerce-checkout-review-order table.shop_table td {
    color: var(--lf-shop-t0) !important;
    border-bottom-color: var(--lf-shop-border) !important;
}

.woocommerce-checkout-review-order table .order-total td {
    color: var(--lf-shop-gold) !important;
}

.woocommerce-checkout #payment {
    background: #fff !important;
    border-color: var(--lf-shop-border) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06) !important;
}

.woocommerce-checkout #payment ul.payment_methods {
    border-bottom-color: var(--lf-shop-border) !important;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    color: var(--lf-shop-t0) !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
    border-bottom-color: var(--lf-shop-border) !important;
}

/* BLIK code input */
.woocommerce-checkout input.autopay-blik-code {
    background: #fff !important;
    border: 1px solid var(--lf-shop-border) !important;
    color: var(--lf-shop-t0) !important;
    font-family: var(--f-mono) !important;
    font-size: 18px !important;
    letter-spacing: 0.3em !important;
    text-align: center !important;
    padding: 10px 16px !important;
    border-radius: var(--lf-r) !important;
    width: 100% !important;
    margin-top: 0.5rem !important;
    display: block !important;
}

.woocommerce-checkout input.autopay-blik-code:focus {
    border-color: var(--lf-shop-acc) !important;
    outline: none !important;
}

.woocommerce-checkout input.autopay-blik-code::placeholder {
    color: var(--lf-shop-t2) !important;
    opacity: 1 !important;
}

.woocommerce-checkout #payment div.payment_box {
    border-left-color: var(--lf-shop-acc) !important;
    color: var(--lf-shop-t1) !important;
}

.woocommerce-checkout #payment div.payment_box p {
    color: var(--lf-shop-t1) !important;
}

.woocommerce-checkout #payment div.payment_box::before {
    display: none !important;
}

.woocommerce-checkout #payment #place_order {
    background: var(--lf-shop-acc) !important;
}

.woocommerce-checkout #payment #place_order:hover {
    background: var(--lf-shop-acc-hi) !important;
}

.woocommerce-checkout .woocommerce-privacy-policy-text {
    color: var(--lf-shop-t2) !important;
}

.woocommerce-checkout .woocommerce-shipping-methods li label {
    color: var(--lf-shop-t0) !important;
}

/* Additional information section */
.woocommerce-checkout .woocommerce-additional-fields h3 {
    color: var(--lf-shop-t0) !important;
    border-bottom-color: var(--lf-shop-border) !important;
}

.woocommerce-info {
    background: var(--lf-shop-bg2) !important;
    border-top-color: var(--lf-shop-acc) !important;
    color: var(--lf-shop-t1) !important;
}

/* Light mode — placeholder image */
.woocommerce-shop .lf-shop-card-image.woocommerce-placeholder,
.single-product .lf-main-image.woocommerce-placeholder,
.woocommerce-shop img[src*="product-placeholder"],
.single-product img[src*="product-placeholder"] {
    filter: none !important;
    opacity: 1 !important;
    background: var(--lf-shop-bg2) !important;
}




/* Light mode — body background (must be last to override) */
body.woocommerce-shop,
body.single-product,
body.woocommerce-cart,
body.woocommerce-checkout,
body.page-template-terms-and-conditions,
body.page-template-privacy-and-cookie-policy,
body.page-template-product-safety-information,
body.page-configurator {
    background: #FAF7F3 !important;
    color: #1a1714 !important;
}

/* ============================================================
   CUSTOMIZATION PAGE
   ============================================================ */
#lf-customization-page {
    background: var(--lf-bg0);
    min-height: 100vh;
}

.lf-customization-hero {
    padding: 8rem 0 4rem;
}

.lf-customization-header {
    margin-bottom: 2.5rem;
}

.lf-customization-eyebrow {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lf-acc);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lf-customization-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--lf-acc);
}

.lf-customization-heading {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    color: var(--lf-t0);
    line-height: 1.05;
    margin: 0;
}

.lf-customization-body {
    max-width: 720px;
    margin-bottom: 3rem;
    border-top: 0.5px solid var(--lf-border);
    padding-top: 2.5rem;
}

.lf-customization-lead {
    font-size: 20px;
    color: var(--lf-t0);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-family: var(--f-serif);
}

.lf-customization-text {
    font-size: 18px;
    color: var(--lf-t1);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-family: var(--f-serif);
}

.lf-customization-text em {
    font-style: italic;
    color: var(--lf-t0);
}

.lf-customization-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--lf-acc);
    color: #f0e6d8;
    border-radius: var(--lf-r);
    padding: 12px 22px;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 5rem;
}

.lf-customization-cta:hover {
    background: var(--lf-acc-hi);
    color: #f0e6d8;
}

#lf-gallery-customization {
    margin-bottom: 5rem;
}

.lf-customization-disclaimer {
    padding-top: 0;
    padding-bottom: 4rem;
}

.lf-customization-disclaimer-text {
    font-size: 15px;
    color: var(--lf-t2);
    line-height: 1.7;
    font-family: var(--f-sans);
    max-width: 800px;
}

/* ============================================================
   CONFIGURATOR — light theme
   ============================================================ */

/* Page body */
body.page-template-page-configurator,
body.page-template-configurator {
    background: #FAF7F3 !important;
    color: #1a1714 !important;
}

#lf-configurator-page {
    background: #FAF7F3;
    min-height: 100vh;
    padding-top: var(--lf-nav-h);
}

#lf-configurator-page .lf-page-title {
    font-family: var(--f-serif);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #1a1714;
    margin: 3rem 0 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 0.5px solid #D4CCC2;
}

.lf-configurator-content {
    width: 100%;
}

.lf-configurator-content .lf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

#lf-configurator {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.lfc-loading,
.lfc-error {
    font-family: var(--f-mono);
    font-size: 13px;
    color: #8a7d72;
    padding: 3rem 0;
    text-align: center;
}

.lfc-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 6rem;
}

/* Rows */
.lfc-row {
    padding: 3rem 0;
    border-top: 0.5px solid #D4CCC2;
}

.lfc-row:first-child {
    border-top: none;
    padding-top: 0;
}

.lfc-row--cart {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
    border-top: none !important;
}

/* Instructions */
.lfc-instructions {
    border-top: none !important;
    padding: 0 0 2rem !important;
}

.lfc-guide {
    font-family: var(--f-serif);
    font-size: 17px;
    color: #4a4239;
    line-height: 1.7;
    margin: 0 0 1.25rem;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.lfc-guide li {
    padding-left: 0.25rem;
}

.lfc-guide a {
    color: #7a4f2c;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lfc-guide-note {
    font-family: var(--f-serif);
    font-size: 15px;
    font-weight: 700;
    color: #6a5a4e;
    margin: 0;
    padding: 0.75rem 1rem;
    border-left: 2px solid #C4B8AA;
    font-style: italic;
}

/* Step label */
.lfc-step-label {
    font-family: var(--f-serif);
    font-size: 22px;
    font-weight: 700;
    color: #1a1714;
    margin: 0 0 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 0.5px solid #D4CCC2;
}

.lfc-placeholder {
    font-family: var(--f-serif);
    font-size: 17px;
    color: #9a8878;
    font-style: italic;
    margin: 0;
}

/* ── ROW 1: Case cards ── */
.lfc-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lfc-case-card {
    background: #fff;
    border: 0.5px solid #D4CCC2;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.lfc-case-card:hover {
    border-color: #8B5E3C;
    box-shadow: 0 4px 16px rgba(139, 94, 60, 0.1);
}

.lfc-case-card.selected {
    border: 1.5px solid #8B5E3C;
    box-shadow: 0 4px 16px rgba(139, 94, 60, 0.15);
}

.lfc-case-iso {
    padding: 1.5rem 1.5rem 0;
    background: #F0EBE3;
}

.lfc-case-info {
    padding: 1.25rem 1.5rem 1.5rem;
}

.lfc-case-name {
    font-family: var(--f-serif);
    font-size: 24px;
    font-weight: 700;
    color: #1a1714;
    margin: 0 0 0.25rem;
}

.lfc-case-modules {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a7d72;
    margin: 0 0 0.75rem;
}

.lfc-case-price {
    font-family: var(--f-mono);
    font-size: 18px;
    color: #7a4f2c;
    font-weight: 700;
    margin: 0;
}

/* ── ROW 2: Front view ── */
.lfc-status {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    margin: 0 0 1.5rem;
}

.lfc-status--ok {
    color: #7a4f2c;
}

.lfc-status--warn {
    color: #BA7517;
}

.lfc-status--full {
    color: #2d7a4f;
}

.lfc-front-view {
    background: #fff;
    border: 0.5px solid #D4CCC2;
    border-radius: 4px;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

/* ── ROW 3: Drawer picker ── */
.lfc-drawers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lfc-drawer-card {
    background: #fff;
    border: 0.5px solid #D4CCC2;
    border-radius: 4px;
    padding: 1.25rem;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lfc-drawer-card:hover:not(.disabled) {
    border-color: #8B5E3C;
    box-shadow: 0 2px 8px rgba(139, 94, 60, 0.1);
}

.lfc-drawer-card.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.lfc-drawer-iso {
    width: 100%;
    margin-bottom: 1rem;
}

.lfc-drawer-name {
    font-family: var(--f-serif);
    font-size: 16px;
    font-weight: 600;
    color: #1a1714;
    margin: 0 0 0.25rem;
}

.lfc-drawer-meta {
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a7d72;
    margin: 0 0 0.5rem;
}

.lfc-drawer-price {
    font-family: var(--f-mono);
    font-size: 15px;
    color: #7a4f2c;
    font-weight: 700;
    margin: 0;
}

.lfc-drawer-why {
    font-family: var(--f-mono);
    font-size: 9px;
    color: #E24B4A;
    margin: 0.25rem 0 0;
}

.lfc-btn-remove {
    background: transparent;
    border: 0.5px solid #D4CCC2;
    border-radius: 4px;
    padding: 0.75rem 1.25rem;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #E24B4A;
    cursor: pointer;
    transition: background 0.15s;
    margin-right: 0.75rem;
}

.lfc-btn-remove:hover {
    background: rgba(226, 75, 74, 0.06);
}

.lfc-btn-cancel {
    background: none;
    border: none;
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 0.08em;
    color: #8a7d72;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
}

/* ── ROW 4: Summary ── */
.lfc-summary-items {
    margin-bottom: 1.5rem;
}

.lfc-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 0.5px solid #D4CCC2;
    font-family: var(--f-serif);
    font-size: 16px;
}

.lfc-summary-name {
    color: #4a4239;
}

.lfc-summary-price {
    font-family: var(--f-mono);
    font-size: 13px;
    color: #1a1714;
}

.lfc-totals {
    background: #fff;
    border: 0.5px solid #D4CCC2;
    border-radius: 4px;
    padding: 1rem 1.5rem;
    max-width: 480px;
}

.lfc-total-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--f-mono);
    font-size: 12px;
    color: #8a7d72;
    padding: 0.4rem 0;
    border-bottom: 0.5px solid #D4CCC2;
}

.lfc-total-row:last-child {
    border-bottom: none;
}

.lfc-total-grand {
    font-size: 18px;
    font-weight: 700;
    color: #1a1714;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

/* ── ROW 5: Cart button ── */
.lfc-btn-cart {
    width: 100%;
    padding: 1.1rem;
    background: #8B5E3C;
    color: #f0e6d8;
    border: none;
    border-radius: 4px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    display: block;
}

.lfc-btn-cart:hover:not(.disabled) {
    background: #a06d48;
}

.lfc-btn-cart.disabled {
    background: #D4CCC2;
    color: #8a7d72;
    cursor: not-allowed;
}

.lfc-summary-total {
    border-bottom: none !important;
    border-top: 2px solid #1a1714;
    margin-top: 0.25rem;
    padding-top: 0.75rem !important;
}

/* Remove bottom border from row directly before Total */
.lfc-summary-prelast,
.lfc-summary-row:has(+ .lfc-summary-total) {
    border-bottom: none !important;
}

.lfc-summary-total .lfc-summary-name,
.lfc-summary-total .lfc-summary-price {
    font-weight: 700;
    font-size: 18px;
    color: #1a1714 !important;
}

/* Responsive */
@media (max-width: 900px) {
    .lfc-cases-grid {
        grid-template-columns: 1fr;
    }

    .lfc-drawers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .lfc-drawers-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ENGRAVING — Artwork upload field
   ============================================================ */
.lf-artwork-upload {
    margin-bottom: 1.5rem;
}

.lf-artwork-label {
    display: block;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lf-shop-t2, #8a7d72);
    margin-bottom: 0.75rem;
}

.lf-artwork-label .required {
    color: #E24B4A;
    margin-left: 2px;
}

.lf-artwork-hint {
    display: block;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--lf-shop-t2, #8a7d72);
    margin-top: 2px;
}

/* Hide native file input */
.lf-artwork-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* Custom file button */
.lf-file-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lf-shop-t1, #4a4239);
    background: #fff;
    border: 1px solid var(--lf-shop-border, #D4CCC2);
    border-radius: 4px;
    padding: 10px 16px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    margin-bottom: 0.5rem;
}

.lf-file-btn:hover {
    border-color: var(--lf-shop-acc, #8B5E3C);
    color: var(--lf-shop-t0, #1a1714);
}

.lf-artwork-filename {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    color: var(--lf-shop-acc, #8B5E3C);
    margin: 0 0 0.5rem;
    min-height: 1.4em;
}

.lf-artwork-note {
    font-family: var(--f-serif);
    font-size: 13px;
    color: var(--lf-shop-t2, #8a7d72);
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Disabled add to cart state for engraving */
.lf-add-to-cart--disabled,
.lf-add-to-cart[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Cart engraving warning */
.lf-cart-engraving-warning {
    font-family: var(--f-serif);
    font-size: 14px;
    color: #E24B4A;
    margin-bottom: 0.75rem;
    padding: 0.75rem 1rem;
    border: 0.5px solid rgba(226, 75, 74, 0.3);
    border-radius: 4px;
    background: rgba(226, 75, 74, 0.05);
    line-height: 1.5;
}

/* Cart payment badges */
.lf-cart-payment-badges {
    margin-top: 1.5rem;
}

.lf-cart-payment-badges img {
    display: block;
    width: 100%;
    height: auto;
}