/* FlagLot Corporate — tema 100% independenta (self-contained) */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700;800&display=swap');

/* FlagLot Storefront — magazin public */
:root {
    --brand: #2563eb;
    --brand-dark: #1e40af;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --radius: 12px;
}
* { box-sizing: border-box; }
body {
    margin: 0; font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--ink); background: var(--bg); line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.shop-container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* Header */
.shop-header { border-bottom: 1px solid var(--line); position: sticky; top: 0; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); z-index: 40; }
.shop-header-inner { display: flex; align-items: center; gap: 1.5rem; padding: .85rem 1.25rem; }
.shop-logo { font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; flex-shrink: 0; }
.shop-logo img { height: 38px; width: auto; }
.shop-search { flex: 1; display: flex; max-width: 520px; position: relative; }
.shop-search input { width: 100%; padding: .6rem 2.6rem .6rem .9rem; border: 1px solid var(--line); border-radius: 9999px; font-size: .9rem; background: var(--bg-soft); }
.shop-search input:focus { outline: 2px solid var(--brand); outline-offset: 1px; background: #fff; }
.shop-search button { position: absolute; right: .35rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--muted); cursor: pointer; padding: .35rem; }
.shop-nav { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.shop-nav-link { font-size: .9rem; font-weight: 500; color: var(--muted); }
.shop-nav-link:hover { color: var(--ink); }

/* Buttons */
.shop-btn { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; padding: .6rem 1.1rem; border-radius: 9999px; font-weight: 600; font-size: .9rem; cursor: pointer; border: 1px solid transparent; transition: .15s; }
.shop-btn-primary { background: var(--brand); color: #fff; }
.shop-btn-primary:hover { background: var(--brand-dark); }
.shop-btn-outline { background: #fff; border-color: var(--line); color: var(--ink); }
.shop-btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.shop-btn-lg { padding: .8rem 1.6rem; font-size: 1rem; }

/* Main */
.shop-main { min-height: 60vh; }

/* Hero */
.shop-hero { background: linear-gradient(135deg, #eff6ff, #f8fafc); padding: 3.5rem 0; border-bottom: 1px solid var(--line); }
.shop-hero h1 { font-size: 2.4rem; letter-spacing: -.03em; margin: 0 0 .6rem; }
.shop-hero p { font-size: 1.1rem; color: var(--muted); margin: 0 0 1.5rem; max-width: 560px; }

/* Section */
.shop-section { padding: 2.5rem 0; }
.shop-section h2 { font-size: 1.5rem; letter-spacing: -.02em; margin: 0 0 1.25rem; }

/* Category grid */
.shop-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.shop-cat-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .15s; background: #fff; }
.shop-cat-card:hover { border-color: var(--brand); box-shadow: 0 6px 20px rgba(37,99,235,.08); transform: translateY(-2px); }
.shop-cat-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; background: var(--bg-soft); }
.shop-cat-card .ph { aspect-ratio: 4/3; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; color: var(--line); font-size: 2rem; }
.shop-cat-card span { display: block; padding: .75rem .9rem; font-weight: 600; font-size: .95rem; }

/* Product grid */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.25rem; }
.shop-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; transition: .15s; display: flex; flex-direction: column; }
.shop-card:hover { border-color: var(--brand); box-shadow: 0 8px 24px rgba(15,23,42,.08); transform: translateY(-3px); }
.shop-card-img { aspect-ratio: 1; object-fit: cover; width: 100%; background: var(--bg-soft); }
.shop-card-img.ph { display: flex; align-items: center; justify-content: center; color: var(--line); font-size: 2.5rem; }
.shop-card-body { padding: .85rem 1rem 1rem; display: flex; flex-direction: column; flex: 1; }
.shop-card-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: .25rem; }
.shop-card-name { font-weight: 600; font-size: .95rem; margin: 0 0 .5rem; line-height: 1.35; }
.shop-card-price { margin-top: auto; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.shop-card-price small { font-weight: 500; font-size: .78rem; color: var(--muted); }

/* Breadcrumbs */
.shop-crumbs { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .82rem; color: var(--muted); padding: 1rem 0; }
.shop-crumbs a:hover { color: var(--brand); }
.shop-crumbs span { color: var(--line); }

/* Product page */
.shop-product { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 1.5rem 0 3rem; }
.shop-gallery-main { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; background: var(--bg-soft); }
.shop-gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.shop-gallery-main .ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--line); font-size: 4rem; }
.shop-thumbs { display: flex; gap: .5rem; margin-top: .75rem; flex-wrap: wrap; }
.shop-thumbs img { width: 64px; height: 64px; object-fit: cover; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
.shop-product h1 { font-size: 1.8rem; letter-spacing: -.02em; margin: 0 0 .5rem; }
.shop-product-sku { font-size: .82rem; color: var(--muted); margin-bottom: 1rem; }
.shop-product-price { font-size: 1.8rem; font-weight: 800; margin: 1rem 0; }
.shop-product-price small { font-size: .9rem; font-weight: 500; color: var(--muted); }
.shop-product-desc { color: #334155; margin: 1.25rem 0; }
.shop-tiers { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 1.25rem 0; }
.shop-tiers table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.shop-tiers th, .shop-tiers td { padding: .55rem .9rem; text-align: left; border-bottom: 1px solid var(--line); }
.shop-tiers th { background: var(--bg-soft); font-weight: 600; }
.shop-tiers tr:last-child td { border-bottom: none; }
.shop-order-note { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: var(--radius); padding: 1rem 1.25rem; margin: 1.25rem 0; font-size: .9rem; }
.shop-order-note strong { color: var(--brand-dark); }

/* Variante & optiuni */
.shop-variants { margin: 1.25rem 0; }
.shop-variant-group { margin-bottom: 1rem; }
.shop-variant-label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: .5rem; }
.shop-variant-options { display: flex; flex-wrap: wrap; gap: .5rem; }
.shop-variant-opt { padding: .5rem .95rem; border: 1.5px solid var(--line); border-radius: 8px; background: #fff; cursor: pointer; font-size: .88rem; font-weight: 500; transition: .12s; }
.shop-variant-opt:hover { border-color: var(--brand); }
.shop-variant-opt.selected { border-color: var(--brand); background: var(--brand); color: #fff; }
.shop-variant-opt.is-color { width: 38px; height: 38px; padding: 0; border-radius: 50%; }
.shop-variant-opt.is-color.selected { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--brand); border-color: #fff; }
.shop-variant-stock { margin-top: .75rem; }
.shop-stock { display: inline-block; font-size: .85rem; font-weight: 600; padding: .35rem .75rem; border-radius: 8px; }
.shop-stock.in { background: #ecfdf5; color: #059669; }
.shop-stock.out { background: #fef2f2; color: #dc2626; }

/* Toolbar (category) */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.shop-toolbar select { padding: .5rem .8rem; border: 1px solid var(--line); border-radius: 8px; font-size: .88rem; }
.shop-count { font-size: .88rem; color: var(--muted); }

/* Pagination */
.shop-pagination { display: flex; justify-content: center; gap: .35rem; margin: 2rem 0; }
.shop-pagination a, .shop-pagination span { padding: .45rem .8rem; border: 1px solid var(--line); border-radius: 8px; font-size: .88rem; }
.shop-pagination .active span { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Footer */
.shop-footer { border-top: 1px solid var(--line); background: var(--bg-soft); margin-top: 3rem; padding: 2.5rem 0 1.5rem; }
.shop-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.shop-footer-title { font-weight: 700; font-size: .9rem; margin: 0 0 .75rem; }
.shop-footer-text { font-size: .85rem; color: var(--muted); margin: .25rem 0; }
.shop-footer-link { display: block; font-size: .85rem; color: var(--muted); margin: .35rem 0; }
.shop-footer-link:hover { color: var(--brand); }
.shop-footer-copy { font-size: .8rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 1.25rem; margin: 0; }

/* Module & zone */
.shop-zone { margin: 0; }
.shop-module { margin: 1.5rem 0; }
.shop-module-title { font-size: 1.4rem; letter-spacing: -.02em; margin: 0 0 1rem; }
.shop-module-banner img { width: 100%; border-radius: var(--radius, 12px); }
.shop-module-banner { position: relative; }
.shop-module-banner-text { position: absolute; left: 1.5rem; bottom: 1.5rem; color: #fff; }
.shop-zone-header .shop-module, .shop-zone-subheader .shop-module { margin: 0; }
.shop-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 1rem; scrollbar-width: thin; }
.shop-slide { flex: 0 0 100%; scroll-snap-align: start; }
.shop-slide img { width: 100%; border-radius: var(--radius, 12px); }
.shop-zone-footer { border-top: 1px solid var(--line); padding-top: 1.5rem; margin-top: 1rem; }

/* Empty state */
.shop-empty { text-align: center; padding: 4rem 1rem; color: var(--muted); }

/* Rich content (HTML din editor) */
.shop-rich { line-height: 1.7; }
.shop-rich h1, .shop-rich h2, .shop-rich h3 { letter-spacing: -.01em; margin: 1.5rem 0 .75rem; line-height: 1.3; }
.shop-rich h1 { font-size: 1.6rem; } .shop-rich h2 { font-size: 1.35rem; } .shop-rich h3 { font-size: 1.15rem; }
.shop-rich p { margin: 0 0 1rem; }
.shop-rich ul, .shop-rich ol { margin: 0 0 1rem; padding-left: 1.4rem; }
.shop-rich li { margin: .3rem 0; }
.shop-rich a { color: var(--brand); text-decoration: underline; }
.shop-rich img { border-radius: 8px; margin: 1rem 0; }
.shop-rich table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .9rem; }
.shop-rich th, .shop-rich td { border: 1px solid var(--line); padding: .5rem .75rem; text-align: left; }
.shop-rich th { background: var(--bg-soft); }
.shop-rich blockquote { border-left: 3px solid var(--brand); padding-left: 1rem; margin: 1rem 0; color: var(--muted); }
.shop-rich strong { font-weight: 700; }

@media (max-width: 768px) {
    .shop-header-inner { flex-wrap: wrap; gap: .75rem; }
    .shop-search { order: 3; max-width: none; flex-basis: 100%; }
    .shop-product { grid-template-columns: 1fr; gap: 1.5rem; }
    .shop-hero h1 { font-size: 1.8rem; }
    .shop-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .shop-container { padding: 0 1rem; }
    .shop-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .85rem; }
    .shop-cat-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .75rem; }
    .shop-section { padding: 1.75rem 0; }
    .shop-hero { padding: 2.25rem 0; }
}
@media (max-width: 420px) {
    .shop-logo img { height: 30px; }
    .shop-logo span { font-size: 1.1rem; }
    .shop-nav { gap: .5rem; }
    .shop-nav-link { font-size: .82rem; }
    .shop-btn { padding: .5rem .85rem; font-size: .82rem; }
    .shop-grid { grid-template-columns: 1fr 1fr; gap: .7rem; }
    .shop-card-name { font-size: .85rem; }
    .shop-card-price { font-size: .95rem; }
    .shop-hero h1 { font-size: 1.5rem; }
    .shop-product h1 { font-size: 1.4rem; }
    .shop-product-price { font-size: 1.5rem; }
}

/* ═══ MEGAMENU orizontal ═══ */
.shop-megamenu { background: var(--ink, #0f172a); position: relative; z-index: 45; transition: transform .25s; }
.shop-megamenu.is-sticky { position: sticky; top: 0; }
.shop-megamenu.menu-hidden { transform: translateY(-100%); }
/* inner = containerul; panoul se pozitioneaza fata de EL (nu fata de tab) */
.shop-megamenu-inner { position: relative; display: flex; }
.shop-megamenu-list { display: flex; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.shop-megamenu-item { position: static; }   /* static => panoul iese la latimea containerului */
.shop-megamenu-item.auto-mode { position: relative; }  /* dropdown auto apare SUB item */
.shop-megamenu-link { display: flex; align-items: center; gap: .3rem; padding: .85rem 1.1rem; color: #fff; font-weight: 600; font-size: .88rem; white-space: nowrap; }
.shop-megamenu-item:hover > .shop-megamenu-link { background: rgba(255,255,255,.1); }
.shop-megamenu-caret { font-size: .7rem; opacity: .7; }
.shop-badge { display: inline-block; background: #ef4444; color: #fff; font-size: .62rem; font-weight: 700; padding: .1rem .4rem; border-radius: 4px; margin-left: .35rem; vertical-align: middle; }

/* panoul: pozitionat fata de container, latime = fractiune x/12 (setata inline) */
.shop-megamenu-panel { display: none; position: absolute; left: 0; top: 100%; background: #fff; box-shadow: 0 14px 34px rgba(0,0,0,.16); border-top: 1px solid var(--line); border-radius: 0 0 10px 10px; z-index: 50; padding: 1.25rem 1.25rem 1.5rem; box-sizing: border-box; }
.shop-megamenu-item.has-mega:hover .shop-megamenu-panel { display: block; }
/* panoul auto (listare subcategorii) apare sub item, latime dupa continut */
.shop-megamenu-panel.is-auto { left: 0; min-width: 240px; width: max-content; max-width: 640px; }

/* coloane: grila pe 12, gutter din padding (procentele insumeaza 100%) */
.shop-megamenu-cols { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.shop-megamenu-col { box-sizing: border-box; padding: 0 12px 1rem; min-width: 0; }
.shop-megamenu-col.col-1 { width: 8.3333%; }   .shop-megamenu-col.col-2 { width: 16.6666%; }
.shop-megamenu-col.col-3 { width: 25%; }        .shop-megamenu-col.col-4 { width: 33.3333%; }
.shop-megamenu-col.col-5 { width: 41.6666%; }   .shop-megamenu-col.col-6 { width: 50%; }
.shop-megamenu-col.col-7 { width: 58.3333%; }   .shop-megamenu-col.col-8 { width: 66.6666%; }
.shop-megamenu-col.col-9 { width: 75%; }        .shop-megamenu-col.col-10 { width: 83.3333%; }
.shop-megamenu-col.col-11 { width: 91.6666%; }  .shop-megamenu-col.col-12 { width: 100%; }
.shop-megamenu-col.col-break { flex-basis: 100%; }
.shop-megamenu-coltitle { display: block; font-weight: 700; font-size: .9rem; color: var(--ink); margin-bottom: .5rem; }
.shop-megamenu-coltitle:hover { color: var(--brand); }
.shop-megamenu-img { width: 100%; border-radius: 8px; margin: .5rem 0; }
.shop-megamenu-links { list-style: none; margin: 0; padding: 0; }
.shop-megamenu-links li { margin: .25rem 0; }
.shop-megamenu-links a { color: var(--muted); font-size: .84rem; display: inline-flex; align-items: center; gap: .35rem; }
.shop-megamenu-links a:hover { color: var(--brand); }

/* auto-subcategorii: coloane automate dupa latimea panoului */
.shop-megamenu-auto { column-width: 190px; column-gap: 2rem; }
.shop-megamenu-auto a { display: block; padding: .32rem 0; color: var(--muted); font-size: .85rem; break-inside: avoid; }
.shop-megamenu-auto a:hover { color: var(--brand); }

@media (max-width: 900px) {
    .shop-megamenu-inner { overflow-x: auto; }
    .shop-megamenu-panel { position: static; width: 100% !important; box-shadow: none; }
    .shop-megamenu-col[class*="col-"] { width: 50%; }
    .shop-megamenu-auto { column-width: 140px; }
}

/* ═══ MENIU vertical (sidebar) ═══ */
.shop-vmenu { background: #fff; border: 1px solid var(--line); border-radius: var(--radius, 12px); overflow: visible; width: 260px; }
.shop-vmenu-list { list-style: none; margin: 0; padding: .35rem 0; }
.shop-vmenu-item { position: relative; }
.shop-vmenu-link { display: flex; align-items: center; gap: .6rem; padding: .6rem 1rem; color: var(--ink); font-size: .88rem; font-weight: 500; }
.shop-vmenu-link:hover { background: var(--bg-soft); color: var(--brand); }
.shop-vmenu-icon { font-size: 1.1rem; }
.shop-vmenu-arrow { margin-left: auto; color: var(--muted); }
.shop-vmenu-panel { display: none; position: absolute; left: 100%; top: 0; min-width: 460px; min-height: 100%; background: #fff; border: 1px solid var(--line); border-radius: 0 var(--radius,12px) var(--radius,12px) 0; box-shadow: 8px 0 32px rgba(0,0,0,.1); padding: 1.25rem; z-index: 55; }
.shop-vmenu-item.has-mega:hover .shop-vmenu-panel { display: block; }
.shop-vmenu-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.25rem; }

@media (max-width: 900px) {
    .shop-megamenu-inner { overflow-x: auto; }
    .shop-megamenu-panel { position: static; box-shadow: none; }
    .shop-megamenu-cols { grid-template-columns: 1fr 1fr; }
    .shop-vmenu { width: 100%; }
    .shop-vmenu-panel { position: static; min-width: 0; box-shadow: none; border: none; padding: .5rem 0 .5rem 1.5rem; }
}


/* ═══════════════════════════════════════════════════════════════
   TEMA CORPORATE — polish editorial (navy + Fraunces/Inter)
   ═══════════════════════════════════════════════════════════════ */

/* Tipografie de brand */
h1, h2, h3, .shop-logo, .shop-megamenu-coltitle { font-family: var(--font-heading); letter-spacing: -.015em; }
body { -webkit-font-smoothing: antialiased; color: var(--ink); }

/* Header rafinat */
.shop-header { border-bottom: 1px solid var(--line); }
.shop-header-inner { padding: 1.1rem 1.25rem; gap: 2rem; }
.shop-logo { font-weight: 700; font-size: 1.4rem; color: var(--ink); }
.shop-logo img { height: 44px; }
.shop-search input { border-radius: 8px; border: 1.5px solid var(--line); background: var(--bg-soft); padding: .7rem 2.8rem .7rem 1rem; font-size: .92rem; }
.shop-search input:focus { background: #fff; outline: 2px solid var(--brand); outline-offset: 0; border-color: var(--brand); }
.shop-nav-link { color: var(--ink); font-weight: 600; }
.shop-nav-link:hover { color: var(--brand); }
.shop-btn { border-radius: 8px; }
.shop-btn-primary { background: var(--brand); box-shadow: 0 1px 2px rgba(10,37,64,.12); }
.shop-btn-primary:hover { background: var(--brand-dark); }

/* Megamenu: bara navy, litere fine */
.shop-megamenu { background: var(--ink); }
.shop-megamenu-link { font-weight: 600; letter-spacing: .01em; font-size: .9rem; text-transform: none; }

/* Bara de beneficii */
.shop-benefits { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.shop-benefits-inner { display: flex; justify-content: space-between; gap: 1.5rem; padding: .7rem 1.25rem; flex-wrap: wrap; }
.shop-benefit { display: flex; align-items: center; gap: .6rem; min-width: 0; }
.shop-benefit-ic { font-size: 1.15rem; }
.shop-benefit strong { display: block; font-size: .8rem; color: var(--ink); font-weight: 600; line-height: 1.2; }
.shop-benefit small { display: block; font-size: .72rem; color: var(--muted); }

/* Hero editorial */
.shop-hero { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); border-bottom: 1px solid var(--line); padding: 4rem 0 3.5rem; position: relative; }
.shop-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(var(--line) 1px, transparent 1px); background-size: 22px 22px; opacity: .5; -webkit-mask-image: linear-gradient(180deg, #000, transparent); mask-image: linear-gradient(180deg, #000, transparent); }
.shop-hero > .shop-container { position: relative; }
.shop-hero .shop-eyebrow { display: inline-block; font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); background: #fff; border: 1px solid var(--line); padding: .35rem .7rem; border-radius: 100px; margin-bottom: 1rem; }
.shop-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 600; line-height: 1.02; color: var(--ink); max-width: 14ch; }
.shop-hero p { font-size: 1.05rem; color: var(--muted); max-width: 48ch; margin: 1rem 0 1.75rem; }
.shop-hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }

/* Section headers editoriale */
.shop-section h2 { font-size: 1.7rem; font-weight: 600; }
.shop-section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.5rem; gap: 1rem; }
.shop-section-head a { font-size: .85rem; font-weight: 600; color: var(--brand); white-space: nowrap; }

/* Carduri categorie rafinate */
.shop-cat-card { border-radius: var(--radius); border-color: var(--line); }
.shop-cat-card:hover { box-shadow: 0 10px 30px rgba(10,37,64,.08); border-color: var(--brand); transform: translateY(-2px); }
.shop-cat-card span { font-weight: 600; color: var(--ink); }

/* Carduri produs editoriale */
.shop-card { border-radius: var(--radius); border-color: var(--line); }
.shop-card:hover { box-shadow: 0 12px 30px rgba(10,37,64,.10); border-color: var(--brand); }
.shop-card-cat { color: var(--brand); font-weight: 600; }
.shop-card-name { color: var(--ink); font-weight: 600; }
.shop-card-price { color: var(--ink); font-family: var(--font-body); }

/* Footer navy corporate */
.shop-footer { background: var(--ink); border-top: none; color: #c7d2e0; margin-top: 4rem; padding: 3rem 0 1.5rem; }
.shop-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
.shop-footer-title { color: #fff; font-family: var(--font-heading); font-weight: 600; font-size: .95rem; }
.shop-footer-text, .shop-footer-link { color: #9fb0c4; }
.shop-footer-link:hover { color: #fff; }
.shop-footer-copy { border-top: 1px solid rgba(255,255,255,.12); color: #7d90a8; }

@media (max-width: 900px) {
    .shop-footer-grid { grid-template-columns: 1fr 1fr; }
    .shop-benefit small { display: none; }
}
@media (max-width: 560px) {
    .shop-benefits-inner { gap: .75rem; }
    .shop-benefit { flex: 1 1 40%; }
    .shop-footer-grid { grid-template-columns: 1fr; }
}
