/* ============================================
   LANCASTER WHOLESALE LTD.
   Editorial British Heritage Design System
   Navy + Cream + Copper palette
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Primary palette */
    --ln-navy: #1E3A5F;
    --ln-navy-deep: #0F2440;
    --ln-navy-soft: #2D4E78;
    --ln-copper: #B85C38;
    --ln-copper-light: #D8895F;
    --ln-copper-dark: #8B2F20;

    /* Neutrals */
    --ln-ink: #0F1620;
    --ln-ink-soft: #2B3240;
    --ln-cream: #F8F4EC;
    --ln-cream-dark: #EDE6D6;
    --ln-paper: #FBF9F3;
    --ln-white: #FFFFFF;
    --ln-line: #E3DDCC;
    --ln-mute: #8A8578;
    --ln-mute-strong: #5A5648;

    /* System */
    --ln-success: #2F7D5A;
    --ln-danger: #8B2F20;
    --ln-amber: #C48A2A;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Radii — deliberately square-ish for editorial feel */
    --r-xs: 2px;
    --r-sm: 4px;
    --r-md: 6px;
    --r-lg: 10px;

    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ================= Reset ================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    background: var(--ln-paper);
    color: var(--ln-ink);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--ln-navy); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--ln-copper); }
::selection { background: var(--ln-navy); color: var(--ln-cream); }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--ln-cream); }
::-webkit-scrollbar-thumb { background: var(--ln-navy); border-radius: 0; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; color: var(--ln-ink); }
h4, h5, h6 { font-family: var(--font-body); font-weight: 600; line-height: 1.3; }

.display-serif { font-family: var(--font-display); }
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.text-copper { color: var(--ln-copper) !important; }
.text-navy { color: var(--ln-navy) !important; }
.text-mute { color: var(--ln-mute-strong); }

/* ================= Containers ================= */
.container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

/* Uppercase eyebrow label */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--ln-copper);
    margin-bottom: 14px;
}
.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--ln-copper);
    display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.center::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--ln-copper);
}
.eyebrow.light { color: var(--ln-copper-light); }
.eyebrow.light::before, .eyebrow.light::after { background: var(--ln-copper-light); }

.section-heading {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--ln-ink);
    margin-bottom: 18px;
}
.section-heading em, .heading-em {
    font-style: italic;
    font-weight: 500;
    color: var(--ln-copper);
    font-family: var(--font-display);
}
.section-lede {
    font-size: 1.02rem;
    color: var(--ln-mute-strong);
    max-width: 640px;
    line-height: 1.7;
}
.section-lede.center { margin: 0 auto; text-align: center; }

/* ================= Buttons ================= */
.ln-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .35s var(--ease);
    border-radius: var(--r-xs);
    position: relative;
    overflow: hidden;
}
.ln-btn-primary {
    background: var(--ln-navy);
    color: var(--ln-cream);
    border-color: var(--ln-navy);
}
.ln-btn-primary:hover {
    background: var(--ln-navy-deep);
    color: var(--ln-cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15,36,64,0.25);
}
.ln-btn-copper {
    background: var(--ln-copper);
    color: var(--ln-cream);
    border-color: var(--ln-copper);
}
.ln-btn-copper:hover {
    background: var(--ln-copper-dark);
    color: var(--ln-cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184,92,56,0.3);
}
.ln-btn-outline {
    background: transparent;
    color: var(--ln-navy);
    border-color: var(--ln-navy);
}
.ln-btn-outline:hover {
    background: var(--ln-navy);
    color: var(--ln-cream);
}
.ln-btn-outline-light {
    background: transparent;
    color: var(--ln-cream);
    border-color: rgba(248,244,236,0.4);
}
.ln-btn-outline-light:hover {
    background: var(--ln-cream);
    color: var(--ln-navy);
    border-color: var(--ln-cream);
}
.ln-btn-sm { padding: 10px 20px; font-size: 0.72rem; }
.ln-btn .arrow { transition: transform .35s var(--ease); }
.ln-btn:hover .arrow { transform: translateX(4px); }

/* ================= Tags / Chips ================= */
.ln-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid var(--ln-line);
    background: var(--ln-cream);
    color: var(--ln-mute-strong);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
}
.ln-chip.dark {
    background: rgba(248,244,236,0.1);
    border-color: rgba(248,244,236,0.2);
    color: var(--ln-cream);
}
.ln-chip i { color: var(--ln-copper); font-size: 10px; }

/* ================= Topbar ================= */
.topbar-strip {
    background: var(--ln-navy-deep);
    color: var(--ln-cream);
    font-size: 12px;
    padding: 10px 0;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(248,244,236,0.08);
}
.topbar-strip .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar-strip a { color: var(--ln-cream); }
.topbar-strip a:hover { color: var(--ln-copper-light); }
.topbar-strip i { color: var(--ln-copper-light); margin-right: 6px; }

/* ================= Navbar ================= */
.navbar-ln {
    background: var(--ln-cream);
    border-bottom: 1px solid var(--ln-line);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow .3s var(--ease);
}
.navbar-ln.scrolled { box-shadow: 0 6px 30px rgba(15,36,64,0.08); }
.nav-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 52px; width: auto; }
.nav-search { flex: 1; max-width: 480px; }
.nav-search-form {
    display: flex;
    align-items: center;
    background: var(--ln-white);
    border: 1px solid var(--ln-line);
    border-radius: var(--r-xs);
    transition: border-color .2s var(--ease);
}
.nav-search-form:focus-within { border-color: var(--ln-navy); }
.nav-search-form input {
    flex: 1;
    border: none;
    padding: 11px 16px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--ln-ink);
    background: transparent;
    outline: none;
}
.nav-search-form input::placeholder { color: var(--ln-mute); }
.nav-search-form button {
    border: none;
    background: var(--ln-navy);
    color: var(--ln-cream);
    padding: 11px 18px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background .2s var(--ease);
}
.nav-search-form button:hover { background: var(--ln-copper); }

.nav-actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.nav-action-link {
    color: var(--ln-navy);
    font-size: 1.05rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: color .2s var(--ease);
}
.nav-action-link:hover { color: var(--ln-copper); }
.nav-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--ln-copper);
    color: var(--ln-cream);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}
.nav-login-btn {
    background: var(--ln-navy);
    color: var(--ln-cream);
    padding: 10px 22px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    border-radius: var(--r-xs);
    transition: all .25s var(--ease);
}
.nav-login-btn:hover { background: var(--ln-copper); color: var(--ln-cream); }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ln-navy);
    font-size: 1.4rem;
    cursor: pointer;
}

.nav-categories {
    background: var(--ln-navy);
    border-top: 3px solid var(--ln-copper);
}
.cat-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    margin: 0;
    justify-content: center;
}
.cat-links li { }
.cat-links a {
    display: inline-block;
    padding: 14px 22px;
    color: var(--ln-cream);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    transition: color .2s var(--ease);
    position: relative;
}
.cat-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 0;
    height: 1px;
    background: var(--ln-copper-light);
    transition: all .25s var(--ease);
    transform: translateX(-50%);
}
.cat-links a:hover::after, .cat-links a.active::after { width: 26px; }
.cat-links a:hover, .cat-links a.active { color: var(--ln-copper-light); }

/* ================= Hero ================= */
.hero {
    position: relative;
    background: var(--ln-navy-deep);
    color: var(--ln-cream);
    padding: 110px 0 130px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background:
        radial-gradient(ellipse at top right, rgba(184,92,56,0.18), transparent 45%),
        radial-gradient(ellipse at bottom left, rgba(45,78,120,0.35), transparent 50%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(248,244,236,0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248,244,236,0.4) 1px, transparent 1px);
    background-size: 72px 72px;
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.4vw, 4.8rem);
    font-weight: 600;
    line-height: 1.04;
    margin: 18px 0 22px;
    color: var(--ln-cream);
    letter-spacing: -0.01em;
}
.hero-title .accent {
    color: var(--ln-copper-light);
    font-style: italic;
    font-weight: 500;
    display: inline-block;
}
.hero-sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(248,244,236,0.7);
    max-width: 560px;
    margin-bottom: 34px;
    font-weight: 300;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
    padding-top: 34px;
    border-top: 1px solid rgba(248,244,236,0.15);
    max-width: 520px;
}
.metric .num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--ln-copper-light);
    line-height: 1;
}
.metric .lbl {
    margin-top: 8px;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(248,244,236,0.55);
}

/* Hero showcase card column */
.hero-showcase {
    position: relative;
    min-height: 460px;
}
.hero-card {
    background: rgba(248,244,236,0.05);
    border: 1px solid rgba(248,244,236,0.15);
    backdrop-filter: blur(14px);
    padding: 26px;
    border-radius: var(--r-sm);
    color: var(--ln-cream);
    transition: transform .4s var(--ease), border-color .3s var(--ease);
}
.hero-card:hover { transform: translateY(-4px); border-color: var(--ln-copper-light); }
.hero-card .ic {
    width: 44px;
    height: 44px;
    background: var(--ln-copper);
    color: var(--ln-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1rem;
}
.hero-card h5 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: var(--ln-cream);
}
.hero-card p {
    font-size: 0.84rem;
    color: rgba(248,244,236,0.55);
    margin: 0;
}
.hero-cards-stack { display: grid; gap: 16px; }

/* ================= Category Grid ================= */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.cat-card {
    background: var(--ln-white);
    border: 1px solid var(--ln-line);
    padding: 32px 24px;
    text-align: left;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--ln-ink);
    display: block;
}
.cat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--ln-copper);
    transition: height .3s var(--ease);
}
.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(15,36,64,0.1);
    color: var(--ln-navy);
    border-color: var(--ln-navy);
}
.cat-card:hover::before { height: 100%; }
.cat-card .cat-icon {
    width: 54px;
    height: 54px;
    background: var(--ln-cream);
    border: 1px solid var(--ln-line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ln-navy);
    font-size: 1.4rem;
    margin-bottom: 18px;
    transition: all .3s var(--ease);
}
.cat-card:hover .cat-icon { background: var(--ln-navy); color: var(--ln-copper-light); border-color: var(--ln-navy); }
.cat-card h5 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--ln-ink);
}
.cat-card .count {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--ln-mute-strong);
}
.cat-card .cat-arrow {
    position: absolute;
    right: 24px;
    top: 32px;
    color: var(--ln-mute);
    transition: all .25s var(--ease);
}
.cat-card:hover .cat-arrow { color: var(--ln-copper); transform: translateX(4px); }

/* ================= Product Card ================= */
.product-card {
    background: var(--ln-white);
    border: 1px solid var(--ln-line);
    overflow: hidden;
    transition: all .35s var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,36,64,0.1);
    border-color: var(--ln-navy);
}
.product-media {
    aspect-ratio: 1/1;
    background: var(--ln-cream);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--ln-line);
}
.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.05); }
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ln-copper);
    color: var(--ln-cream);
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
}
.product-quick {
    position: absolute;
    inset: 0;
    background: rgba(15,36,64,0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.product-card:hover .product-quick { opacity: 1; }
.product-quick a {
    color: var(--ln-cream);
    padding: 12px 26px;
    border: 1px solid var(--ln-copper-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all .25s var(--ease);
}
.product-quick a:hover { background: var(--ln-copper); border-color: var(--ln-copper); color: var(--ln-cream); }
.product-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.product-cat {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--ln-copper);
    margin-bottom: 8px;
}
.product-name {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--ln-ink);
    margin-bottom: 10px;
    line-height: 1.25;
    min-height: 2.9rem;
}
.product-meta {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--ln-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-price {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--ln-navy);
}
.product-price .from { font-size: 0.72rem; color: var(--ln-mute-strong); font-family: var(--font-body); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-right: 4px; }
.product-moq {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ln-mute-strong);
}
.price-gate {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--ln-copper);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.price-gate:hover { color: var(--ln-copper-dark); }

/* ================= Value props band ================= */
.value-band {
    background: var(--ln-navy);
    color: var(--ln-cream);
    padding: 54px 0;
    border-top: 3px solid var(--ln-copper);
    border-bottom: 3px solid var(--ln-copper);
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.value-item { text-align: center; padding: 0 14px; }
.value-item i {
    font-size: 1.6rem;
    color: var(--ln-copper-light);
    margin-bottom: 14px;
    display: block;
}
.value-item h5 { color: var(--ln-cream); font-size: 0.95rem; margin-bottom: 6px; letter-spacing: 0.5px; }
.value-item p { color: rgba(248,244,236,0.6); font-size: 0.82rem; margin: 0; }

/* ================= CTA band ================= */
.cta-band {
    background: var(--ln-cream-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 100%;
    background: var(--ln-copper);
    opacity: 0.08;
    transform: skewX(-12deg);
}
.cta-band h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--ln-ink);
    margin-bottom: 14px;
}
.cta-band p { color: var(--ln-mute-strong); font-size: 1rem; max-width: 560px; }

/* ================= About split ================= */
.about-split {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: center;
}
.about-visual {
    background: var(--ln-navy);
    color: var(--ln-copper-light);
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-visual::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(216,137,95,0.35);
}
.about-visual i { font-size: 5rem; z-index: 1; }
.about-visual .stamp {
    position: absolute;
    bottom: 22px;
    right: 22px;
    background: var(--ln-copper);
    color: var(--ln-cream);
    padding: 10px 16px;
    font-size: 10px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ================= Page hero / breadcrumb ================= */
.page-hero {
    background: var(--ln-navy-deep);
    color: var(--ln-cream);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom right, rgba(184,92,56,0.2), transparent 55%);
}
.page-hero .content { position: relative; z-index: 2; }
.page-hero h1 {
    color: var(--ln-cream);
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    margin-bottom: 10px;
}
.breadcrumb-ln {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(248,244,236,0.6);
    margin-bottom: 20px;
}
.breadcrumb-ln a { color: var(--ln-copper-light); }
.breadcrumb-ln a:hover { color: var(--ln-cream); }

/* ================= Products list page ================= */
.products-shell { display: grid; grid-template-columns: 260px 1fr; gap: 40px; }
.filter-panel {
    background: var(--ln-white);
    border: 1px solid var(--ln-line);
    padding: 26px 22px;
    position: sticky;
    top: 96px;
    height: fit-content;
}
.filter-panel h6 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ln-copper);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ln-line);
}
.filter-panel ul { list-style: none; padding: 0; margin: 0 0 24px; }
.filter-panel ul li { margin-bottom: 2px; }
.filter-panel ul a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    font-size: 0.85rem;
    color: var(--ln-ink-soft);
    border-left: 2px solid transparent;
    transition: all .2s var(--ease);
}
.filter-panel ul a:hover { color: var(--ln-navy); background: var(--ln-cream); border-left-color: var(--ln-copper); }
.filter-panel ul a.active { color: var(--ln-navy); background: var(--ln-cream); border-left-color: var(--ln-copper); font-weight: 600; }
.filter-panel ul a span { font-size: 11px; color: var(--ln-mute); }

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--ln-white);
    border: 1px solid var(--ln-line);
    margin-bottom: 22px;
}
.products-toolbar select {
    border: 1px solid var(--ln-line);
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    background: var(--ln-white);
    color: var(--ln-ink);
    cursor: pointer;
}
.products-toolbar .count { font-size: 12px; color: var(--ln-mute-strong); letter-spacing: 1px; text-transform: uppercase; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ================= Product detail ================= */
.pdp-shell { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.pdp-media {
    background: var(--ln-cream);
    aspect-ratio: 1/1;
    border: 1px solid var(--ln-line);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.pdp-media img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info .eyebrow { margin-bottom: 12px; }
.pdp-info h1 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin-bottom: 18px;
    font-weight: 600;
}
.pdp-price {
    padding: 22px 26px;
    background: var(--ln-cream);
    border-left: 3px solid var(--ln-copper);
    margin-bottom: 26px;
}
.pdp-price .amt {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--ln-navy);
}
.pdp-price .label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ln-mute-strong); margin-bottom: 4px; }
.pdp-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-bottom: 28px; }
.pdp-spec {
    padding: 12px 0;
    border-top: 1px solid var(--ln-line);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
}
.pdp-spec .k { color: var(--ln-mute-strong); text-transform: uppercase; letter-spacing: 1.5px; font-size: 10px; font-weight: 600; }
.pdp-spec .v { color: var(--ln-ink); font-weight: 500; }

/* ================= Forms ================= */
.ln-input, .ln-textarea, .ln-select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--ln-line);
    background: var(--ln-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--ln-ink);
    border-radius: var(--r-xs);
    transition: border-color .2s var(--ease);
}
.ln-input:focus, .ln-textarea:focus, .ln-select:focus {
    outline: none;
    border-color: var(--ln-navy);
    box-shadow: 0 0 0 3px rgba(30,58,95,0.08);
}
.ln-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--ln-ink-soft);
    margin-bottom: 8px;
}
.ln-field { margin-bottom: 18px; }
.ln-card {
    background: var(--ln-white);
    border: 1px solid var(--ln-line);
    padding: 38px 34px;
}

/* ================= Footer ================= */
.footer-ln {
    background: var(--ln-navy-deep);
    color: rgba(248,244,236,0.65);
    padding: 80px 0 0;
    margin-top: 0;
    position: relative;
}
.footer-ln::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ln-copper-dark), var(--ln-copper), var(--ln-copper-light), var(--ln-copper), var(--ln-copper-dark));
}
.footer-ln h6 {
    color: var(--ln-cream);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(248,244,236,0.12);
    position: relative;
}
.footer-ln h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 32px;
    height: 2px;
    background: var(--ln-copper);
}
.footer-ln ul { list-style: none; padding: 0; margin: 0; }
.footer-ln ul li { margin-bottom: 10px; font-size: 0.87rem; }
.footer-ln ul a { color: rgba(248,244,236,0.65); transition: all .2s var(--ease); }
.footer-ln ul a:hover { color: var(--ln-copper-light); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.6; }
.footer-contact i { color: var(--ln-copper-light); margin-top: 4px; font-size: 0.85rem; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(248,244,236,0.18);
    color: rgba(248,244,236,0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .25s var(--ease);
}
.footer-social a:hover { background: var(--ln-copper); border-color: var(--ln-copper); color: var(--ln-cream); }
.footer-bottom {
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid rgba(248,244,236,0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    color: rgba(248,244,236,0.5);
}
.footer-bottom a { color: rgba(248,244,236,0.6); margin-left: 20px; }
.footer-bottom a:hover { color: var(--ln-copper-light); }

/* ================= Reveal animation ================= */
.reveal { opacity: 0; transform: translateY(16px); transition: all .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ================= Alerts ================= */
.ln-alert {
    padding: 14px 18px;
    border-left: 3px solid var(--ln-success);
    background: rgba(47,125,90,0.08);
    color: var(--ln-success);
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.ln-alert.danger { border-color: var(--ln-danger); background: rgba(139,47,32,0.08); color: var(--ln-danger); }

/* ================= Back to top ================= */
.back-to-top-modern {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    background: var(--ln-navy);
    color: var(--ln-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: all .3s var(--ease);
    z-index: 50;
}
.back-to-top-modern.show { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top-modern:hover { background: var(--ln-copper); }

/* ================= Responsive ================= */
@media (max-width: 992px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .products-shell { grid-template-columns: 1fr; }
    .filter-panel { position: static; }
    .pdp-shell { grid-template-columns: 1fr; gap: 36px; }
    .about-split { grid-template-columns: 1fr; gap: 36px; }
    .nav-search { display: none !important; }
    .nav-toggle { display: inline-block; }
    .cat-links { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
    .cat-links a { padding: 12px 14px; white-space: nowrap; font-size: 11px; }
    .hero { padding: 80px 0 90px; }
    .hero-showcase { min-height: 0; margin-top: 36px; }
}
@media (max-width: 640px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cat-card { padding: 22px 16px; }
    .value-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .section { padding: 60px 0; }
    .hero-metrics { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .metric .num { font-size: 1.6rem; }
    .pdp-info h1 { font-size: 1.8rem; }
    .nav-inner { gap: 14px; padding: 12px 16px; }
    .brand img { height: 42px; }
    .topbar-strip { font-size: 11px; }
    .topbar-strip .container { flex-wrap: wrap; gap: 6px 12px; }
    .footer-bottom { justify-content: center; text-align: center; }
    .footer-bottom a { margin: 0 10px; }
}
