@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --cream: #faf6ef; --cream2: #f2ebdf; --ink: #1e2a25; --muted: #6b7570; --line: #e6ded0;
  --green: #1f4d3a; --green2: #2b6a50; --gold: #c9a45c; --gold2: #e3c98a; --terra: #c0533a; --rose: #f1d9d0;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius: 18px; --shadow: 0 10px 30px rgba(30,42,37,.08); --shadow-lg: 0 24px 50px rgba(30,42,37,.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--cream); font-size: 15px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -.01em; line-height: 1.15; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Header ===== */
.announce { background: var(--green); color: var(--cream); text-align: center; font-size: 12.5px; letter-spacing: .04em; padding: 8px 12px; }
.announce b { color: var(--gold2); font-weight: 600; }
.topbar { position: sticky; top: 0; z-index: 30; background: rgba(250,246,239,.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); transition: box-shadow .3s; }
.topbar.scrolled { box-shadow: 0 6px 24px rgba(30,42,37,.08); }
.topbar-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding: 14px 24px; }
.brand-note { font-size: 12.5px; color: var(--muted); }
.brand-note span { color: var(--green); font-weight: 500; }
.logo { font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--green); letter-spacing: .02em; white-space: nowrap; display: inline-flex; align-items: center; gap: 10px; }
.logo i { display: inline-block; width: 34px; height: 34px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, var(--gold2), var(--gold) 55%, #9c7a35); box-shadow: inset 0 -3px 6px rgba(0,0,0,.15); position: relative; }
.logo i::after { content: ""; position: absolute; top: -6px; left: 50%; width: 10px; height: 8px; margin-left: -5px; background: var(--green); border-radius: 3px 3px 0 0; }
.logo.small { font-size: 22px; color: var(--cream); }
.logo.small i { width: 26px; height: 26px; }
.utility { display: flex; justify-content: flex-end; align-items: center; gap: 18px; font-size: 13.5px; font-weight: 500; }
.utility a:hover { color: var(--green2); }
.cart-link { display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: var(--cream); padding: 8px 14px; border-radius: 999px; transition: .2s; }
.cart-link:hover { background: var(--green2); color: var(--cream); }
.cart-count { background: var(--gold); color: var(--ink); border-radius: 10px; padding: 0 7px; font-size: 11.5px; font-weight: 600; min-width: 20px; text-align: center; line-height: 18px; }
.nav { background: transparent; position: relative; z-index: 20; }
.nav ul { list-style: none; margin: 0 auto; padding: 0 0 6px; display: flex; justify-content: center; flex-wrap: wrap; gap: 2px; max-width: 1240px; }
.nav > ul > li > a { display: block; padding: 11px 12px; font-size: 12.5px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); border-radius: 999px; transition: .2s; }
.nav > ul > li > a:hover, .nav > ul > li > a.active { background: var(--cream2); color: var(--green); }
.nav .caret { font-size: 11px; opacity: .5; margin-left: 2px; }
.nav li { position: relative; }
.nav .sub { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--line); min-width: 200px; border-radius: 14px; box-shadow: var(--shadow-lg); flex-direction: column; padding: 8px; }
.nav li:hover > .sub { display: flex; }
.nav .sub a { display: block; padding: 10px 14px; font-size: 13.5px; border-radius: 10px; }
.nav .sub a:hover { background: var(--cream); color: var(--green); }
.nav-toggle { display: none; width: 100%; padding: 12px; background: none; border: 0; font-family: var(--sans); font-size: 15px; font-weight: 500; cursor: pointer; color: var(--green); }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--green); color: var(--cream); border: 1.5px solid var(--green); padding: 13px 28px; border-radius: 999px; font-family: var(--sans); font-size: 13.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: .25s; }
.btn:hover { background: var(--green2); border-color: var(--green2); transform: translateY(-1px); box-shadow: 0 10px 20px rgba(31,77,58,.22); }
.btn.outline { background: transparent; color: var(--green); }
.btn.outline:hover { background: var(--green); color: var(--cream); }
.btn.light { background: var(--cream); color: var(--green); border-color: var(--cream); }
.btn.light:hover { background: #fff; }
.btn.gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn.gold:hover { background: var(--gold2); border-color: var(--gold2); }
.btn.accent { background: var(--terra); border-color: var(--terra); }
.btn.accent:hover { background: #a9452f; border-color: #a9452f; }
.btn-sm { padding: 10px 16px; font-size: 12px; width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ===== Hero ===== */
.hero { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; margin-top: 26px; border-radius: 28px; overflow: hidden; background: linear-gradient(135deg, #22543f 0%, #1f4d3a 45%, #163a2c 100%); color: var(--cream); position: relative; min-height: 520px; box-shadow: var(--shadow-lg); }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(201,164,92,.35), transparent 45%), radial-gradient(circle at 10% 90%, rgba(255,255,255,.08), transparent 40%); pointer-events: none; }
.hero-copy { padding: 70px 60px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
.hero-copy .eyebrow { color: var(--gold2); margin-bottom: 18px; }
.hero-copy h1 { font-size: clamp(40px, 5vw, 66px); margin: 0 0 18px; color: #fff; }
.hero-copy h1 em { font-style: italic; color: var(--gold2); font-weight: 500; }
.hero-copy p { font-size: 16.5px; color: rgba(250,246,239,.82); max-width: 460px; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-art { position: relative; display: flex; align-items: center; justify-content: center; padding: 40px; }
.hero-art img { width: 100%; max-width: 480px; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,.3); transform: rotate(-2deg); transition: transform .6s; }
.hero:hover .hero-art img { transform: rotate(0deg) scale(1.02); }
.hero-badge { position: absolute; top: 40px; right: 40px; width: 120px; height: 120px; border-radius: 50%; background: var(--gold); color: var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 30px; line-height: 1; box-shadow: 0 14px 30px rgba(0,0,0,.25); animation: float 4s ease-in-out infinite; z-index: 2; }
.hero-badge small { font-family: var(--sans); font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; margin-top: 4px; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-10px) rotate(-6deg); } }

/* ===== Feature strip ===== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 26px 0 0; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; display: flex; gap: 14px; align-items: center; }
.feature .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--cream2); display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.feature b { display: block; font-size: 14px; }
.feature small { color: var(--muted); font-size: 12.5px; }

/* ===== Category tiles ===== */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0; }
.tiles.row2 { grid-template-columns: repeat(3, 1fr); }
.tile { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); background: var(--cream2); box-shadow: var(--shadow); transition: transform .35s, box-shadow .35s; }
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.tile:hover img { transform: scale(1.06); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,42,37,.72) 0%, rgba(30,42,37,.12) 50%, transparent 100%); }
.tile span { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1; color: #fff; font-family: var(--serif); font-size: clamp(22px, 2.2vw, 30px); font-weight: 600; line-height: 1.1; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.tile span::after { content: "→"; font-family: var(--sans); font-size: 18px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); display: grid; place-items: center; flex-shrink: 0; transition: .3s; }
.tile:hover span::after { background: var(--gold); color: var(--ink); }
.tile.t1 { background: #d9e4d2; } .tile.t2 { background: #e8d9c5; } .tile.t3 { background: #d6e0e6; } .tile.t4 { background: #f0dccf; }
.tile.t5 { background: #e2d6e8; } .tile.t6 { background: #f1d9d0; } .tile.t7 { background: #dde6d9; }
.tile img { opacity: .9; }

/* ===== Sections ===== */
.section { padding: 64px 0 20px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 26px; gap: 20px; }
.section-head h2 { font-size: 36px; margin: 6px 0 0; }
.section-head a { color: var(--green); font-weight: 600; font-size: 13.5px; letter-spacing: .04em; border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; }
.section.about { text-align: center; padding: 60px 0; }
.section.about h2 { font-size: 40px; margin: 8px 0 4px; }
.section .sub { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.section p.lead { max-width: 720px; margin: 0 auto 28px; color: #4c5652; font-size: 16.5px; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* Story band */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 56px; margin-top: 60px; }
.story img { border-radius: 20px; box-shadow: var(--shadow); }
.story h2 { font-size: 38px; margin: 8px 0 16px; }
.story p { color: #4c5652; font-size: 16px; }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: relative; }
.quote::before { content: "“"; position: absolute; top: 6px; left: 18px; font-family: var(--serif); font-size: 70px; color: var(--gold2); line-height: 1; }
.quote p { margin: 22px 0 16px; font-size: 15px; color: #3d4744; font-style: italic; }
.quote .who { font-size: 13px; font-weight: 600; }
.quote .who small { display: block; color: var(--muted); font-weight: 400; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }

/* Newsletter */
.newsletter { margin: 70px 0 0; background: var(--green); color: var(--cream); border-radius: 28px; padding: 56px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.newsletter::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(201,164,92,.35), transparent 65%); }
.newsletter h2 { font-size: 34px; margin: 6px 0 10px; color: #fff; }
.newsletter p { color: rgba(250,246,239,.8); margin: 0; }
.newsletter form { display: flex; gap: 10px; position: relative; z-index: 1; }
.newsletter input { flex: 1; padding: 14px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); color: #fff; font-family: inherit; font-size: 14px; }
.newsletter input::placeholder { color: rgba(255,255,255,.6); }
.newsletter input:focus { outline: none; border-color: var(--gold); }

/* ===== Product card ===== */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-img { position: relative; display: block; background: var(--cream2); overflow: hidden; }
.card-img img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .6s; }
.card:hover .card-img img { transform: scale(1.06); }
.badge { position: absolute; top: 12px; left: 12px; background: var(--terra); color: #fff; font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.badge.new { background: var(--green); top: 38px; }
.fav-btn { position: absolute; top: 10px; right: 10px; background: #fff; border: 0; border-radius: 50%; width: 34px; height: 34px; cursor: pointer; color: #c4bdb0; font-size: 16px; line-height: 1; box-shadow: 0 4px 12px rgba(0,0,0,.1); transition: .2s; }
.fav-btn.active, .fav-btn:hover { color: var(--terra); transform: scale(1.1); }
.card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.card-sku { font-size: 11px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.card-name { font-family: var(--serif); font-weight: 600; font-size: 17px; line-height: 1.25; }
.card-name:hover { color: var(--green2); }
.card-price { font-weight: 600; font-size: 16px; margin: 4px 0 8px; margin-top: auto; color: var(--green); }
.card-price s { color: var(--muted); font-size: 13px; margin-left: 6px; font-weight: 400; }
.card .btn-sm { background: var(--cream2); color: var(--green); border-color: var(--cream2); }
.card .btn-sm:hover { background: var(--green); color: var(--cream); border-color: var(--green); box-shadow: none; }

/* ===== Shop ===== */
.page-title { text-align: center; padding: 44px 0 14px; }
.page-title h1 { font-size: 44px; margin: 6px 0 0; }
.page-title .crumb { font-size: 12.5px; color: var(--muted); letter-spacing: .04em; }
.page-title .crumb a:hover { color: var(--green); }
.shop { display: grid; grid-template-columns: 240px 1fr; gap: 36px; padding: 24px 0 70px; }
.filters { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; align-self: start; position: sticky; top: 90px; }
.filters h3 { font-size: 15px; margin: 0 0 10px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.filters ul { list-style: none; padding: 0; margin: 0 0 22px; }
.filters li a { display: block; padding: 6px 10px; color: #4c5652; border-radius: 8px; font-size: 14px; }
.filters li a.active, .filters li a:hover { color: var(--green); background: var(--cream); font-weight: 500; }
.filters li.sub a { padding-left: 22px; font-size: 13px; }
.filters input[type=search] { width: 100%; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; margin-bottom: 20px; font-family: inherit; background: var(--cream); }
.filters input[type=search]:focus { outline: none; border-color: var(--green); background: #fff; }
.toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; font-size: 13.5px; color: var(--muted); }
.toolbar select { padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; font-family: inherit; background: #fff; color: var(--ink); }
.shop .grid { grid-template-columns: repeat(3, 1fr); }
.empty { text-align: center; padding: 70px 20px; color: var(--muted); }
.empty p { font-family: var(--serif); font-size: 22px; color: var(--ink); }

/* ===== Product page ===== */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 30px 0 40px; }
.gallery .main { border-radius: 24px; overflow: hidden; background: var(--cream2); box-shadow: var(--shadow); }
.gallery .thumbs { display: flex; gap: 10px; margin-top: 12px; }
.gallery .thumbs img { width: 76px; border: 2px solid transparent; border-radius: 12px; cursor: pointer; background: var(--cream2); transition: .2s; }
.gallery .thumbs img.active, .gallery .thumbs img:hover { border-color: var(--gold); }
.pinfo h1 { font-size: 38px; margin: 6px 0 8px; }
.pinfo .sku { color: var(--muted); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.pinfo .price { font-size: 30px; font-weight: 600; color: var(--green); margin: 12px 0; }
.pinfo .price s { font-size: 18px; color: var(--muted); margin-left: 10px; font-weight: 400; }
.pinfo .stock { font-size: 13.5px; color: var(--green2); margin-bottom: 20px; display: inline-flex; align-items: center; gap: 6px; }
.pinfo .stock::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.pinfo .stock.low { color: var(--terra); }
.qty { display: inline-flex; border: 1.5px solid var(--line); border-radius: 999px; margin-right: 12px; vertical-align: middle; background: #fff; overflow: hidden; }
.qty button { width: 40px; height: 46px; border: 0; background: transparent; cursor: pointer; font-size: 18px; color: var(--green); }
.qty button:hover { background: var(--cream); }
.qty input { width: 50px; text-align: center; border: 0; font-size: 15px; font-family: inherit; font-weight: 600; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pinfo .desc { margin-top: 28px; color: #4c5652; border-top: 1px solid var(--line); padding-top: 20px; font-size: 15.5px; }
.pinfo table { width: 100%; border-collapse: collapse; margin-top: 18px; font-size: 13.5px; }
.pinfo td { padding: 9px 0; border-bottom: 1px solid var(--line); }
.pinfo td:first-child { color: var(--muted); width: 100px; }
.pinfo .fav-line { margin-top: 14px; font-size: 13.5px; }
.pinfo .fav-line button { background: none; border: 0; cursor: pointer; color: var(--muted); font-family: inherit; font-size: 13.5px; }
.pinfo .fav-line button.active, .pinfo .fav-line button:hover { color: var(--terra); }

/* ===== Cart / Checkout ===== */
.cart-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cart-table th { text-align: left; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding: 14px 16px; background: var(--cream2); }
.cart-table td { padding: 16px; border-top: 1px solid var(--line); vertical-align: middle; }
.cart-table img { width: 78px; border-radius: 12px; background: var(--cream2); }
.cart-table .item { display: flex; gap: 14px; align-items: center; }
.cart-table .item b { font-family: var(--serif); font-size: 16px; font-weight: 600; }
.cart-table .remove { color: var(--muted); cursor: pointer; background: none; border: 0; font-size: 20px; }
.cart-table .remove:hover { color: var(--terra); }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; padding: 20px 0 70px; }
.summary { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: #fff; align-self: start; position: sticky; top: 90px; box-shadow: var(--shadow); }
.summary h3 { margin: 0 0 14px; font-size: 22px; }
.summary .row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: #4c5652; }
.summary .row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-size: 22px; font-weight: 600; color: var(--ink); }
.summary .btn { width: 100%; margin-top: 16px; }
.summary .hint { font-size: 12.5px; color: var(--muted); margin-top: 12px; text-align: center; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.form h3 { font-size: 20px; margin: 26px 0 14px; }
.form h3:first-child { margin-top: 0; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { display: block; font-size: 13px; margin-bottom: 14px; }
.form label span { display: block; margin-bottom: 6px; color: #4c5652; font-weight: 500; }
.form input, .form textarea, .form select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; font-family: inherit; font-size: 14px; background: var(--cream); transition: .2s; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.form input.error { border-color: var(--terra); background: #fff5f2; }
.pay-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pay-options label { border: 1.5px solid var(--line); border-radius: 12px; padding: 14px; text-align: center; cursor: pointer; margin: 0; font-weight: 500; transition: .2s; }
.pay-options input { width: auto; margin-right: 6px; accent-color: var(--green); }
.pay-options label.checked { border-color: var(--green); background: var(--cream); }
.mini-items { list-style: none; padding: 0; margin: 0 0 10px; }
.mini-items li { display: flex; justify-content: space-between; font-size: 13.5px; padding: 5px 0; color: #4c5652; gap: 12px; }
.order-done { text-align: center; padding: 60px 20px 80px; }
.order-done .check { width: 84px; height: 84px; border-radius: 50%; background: var(--green); color: var(--cream); display: grid; place-items: center; font-size: 40px; margin: 0 auto 22px; box-shadow: 0 14px 30px rgba(31,77,58,.25); }
.order-done h2 { font-size: 42px; margin: 0 0 8px; }
.order-done .no { font-size: 20px; font-weight: 600; letter-spacing: .08em; margin: 14px 0 22px; color: var(--green); }

/* ===== Login / FAQ / About ===== */
.auth { max-width: 440px; margin: 50px auto 80px; }
.auth h2 { margin: 0 0 22px; font-size: 32px; text-align: center; }
.auth .btn { width: 100%; }
.auth .switch { text-align: center; font-size: 13.5px; margin-top: 18px; color: var(--muted); }
.auth .switch a { color: var(--green); font-weight: 600; }
.faq { max-width: 820px; margin: 0 auto; padding: 20px 0 70px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; margin-bottom: 12px; transition: .2s; }
.faq details[open] { border-color: var(--gold); box-shadow: var(--shadow); }
.faq summary { cursor: pointer; font-family: var(--serif); font-weight: 600; font-size: 17px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--gold); width: 30px; height: 30px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 12px 0 0; color: #4c5652; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 20px 0 50px; }
.about-grid img { border-radius: 24px; box-shadow: var(--shadow-lg); }
.about-grid h2 { font-size: 36px; margin: 8px 0 14px; }
.about-grid p { color: #4c5652; font-size: 16px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; margin: 20px 0 40px; }
.stats div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 10px; }
.stats b { display: block; font-family: var(--serif); font-size: 44px; font-weight: 600; color: var(--green); line-height: 1; margin-bottom: 8px; }
.stats small { color: var(--muted); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }

/* ===== Footer ===== */
footer { background: var(--ink); color: rgba(250,246,239,.75); margin-top: 60px; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 28px; font-size: 13.5px; }
.footer-grid h4 { color: #fff; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; margin: 0 0 12px; }
.footer-grid a { display: block; color: rgba(250,246,239,.75); padding: 4px 0; }
.footer-grid a:hover { color: var(--gold2); }
.footer-about { max-width: 300px; margin-top: 14px; line-height: 1.7; }
.social { margin-top: 18px; display: flex; align-items: center; gap: 8px; font-size: 13px; }
.social a { display: inline-grid; place-items: center; width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-size: 11px; font-weight: 600; transition: .2s; }
.social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.copyright { font-size: 12px; color: rgba(250,246,239,.5); padding: 24px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.1); text-align: center; }

/* ===== Toast ===== */
.toast { position: fixed; left: 50%; bottom: 36px; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; padding: 12px 26px; border-radius: 999px; font-size: 13.5px; font-weight: 500; opacity: 0; pointer-events: none; transition: .3s; z-index: 100; box-shadow: var(--shadow-lg); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .topbar-inner { grid-template-columns: auto 1fr; }
  .brand-note { display: none; }
  .grid, .shop .grid { grid-template-columns: repeat(3, 1fr); }
  .tiles, .tiles.row2, .features { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .story, .newsletter { grid-template-columns: 1fr; padding: 36px; }
}
@media (max-width: 760px) {
  .topbar-inner { grid-template-columns: 1fr; gap: 10px; padding: 12px 16px; justify-items: center; }
  .logo { font-size: 24px; }
  .utility { gap: 14px; font-size: 13px; justify-content: center; flex-wrap: wrap; }
  .utility a:first-child { display: none; }
  .cart-link { padding: 6px 12px; }
  .nav-toggle { display: block; }
  .nav ul { display: none; flex-direction: column; gap: 0; padding: 0 16px 12px; }
  .nav ul.open { display: flex; }
  .nav > ul > li > a { padding: 12px 14px; border-radius: 10px; }
  .nav .sub { position: static; display: flex; box-shadow: none; border: 0; background: var(--cream); margin: 0 0 6px; }
  .hero { grid-template-columns: 1fr; min-height: auto; border-radius: 22px; }
  .hero-copy { padding: 40px 28px 10px; }
  .hero-art { padding: 20px 28px 36px; }
  .hero-badge { width: 92px; height: 92px; font-size: 22px; top: 20px; right: 20px; }
  .grid, .shop .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tiles, .tiles.row2, .features { grid-template-columns: 1fr; }
  .shop, .product, .cart-layout, .about-grid { grid-template-columns: 1fr; }
  .filters, .summary { position: static; }
  .cart-table th:nth-child(3), .cart-table td:nth-child(3) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form .row2, .pay-options { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .section-head h2, .page-title h1 { font-size: 30px; }
  .newsletter form { flex-direction: column; }
}

/* ===== Members-only pricing ===== */
.card-price.locked { color: var(--muted); font-weight: 500; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.card .btn-sm[href] { text-decoration: none; }
.member-gate { display: flex; flex-direction: column; gap: 14px; background: var(--cream2); border: 1px dashed var(--gold); border-radius: var(--radius); padding: 22px; margin: 14px 0 4px; }
.member-gate .lock { font-size: 26px; }
.member-gate b { font-family: var(--serif); font-size: 18px; }
.member-gate p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.member-gate-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ===== Admin ===== */
.admin-body { background: var(--cream); }
.admin-bar { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; background: var(--ink); color: var(--cream); }
.admin-bar .logo.small { color: var(--cream); font-size: 20px; }
.admin-bar .logo.small i { width: 24px; height: 24px; }
.admin-bar-right { display: flex; align-items: center; gap: 12px; }
.admin-who { font-size: 13px; color: rgba(250,246,239,.7); }
.btn-xs { padding: 7px 12px; font-size: 11.5px; }
.admin-bar .btn.outline { color: var(--cream); border-color: rgba(255,255,255,.35); background: transparent; }
.admin-bar .btn.outline:hover { background: rgba(255,255,255,.12); }
.admin-main { max-width: 1100px; margin: 0 auto; padding: 30px 24px 70px; }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.admin-login { max-width: 420px; margin: 50px auto; }
.admin-login h2 { margin: 0 0 8px; font-size: 28px; }
.admin-login .muted { color: var(--muted); margin: 0 0 18px; }
.admin-login label { display: block; margin-bottom: 14px; }
.admin-login label span { display: block; margin-bottom: 6px; font-weight: 500; font-size: 13px; }
.admin-login input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; font-family: inherit; font-size: 14px; background: var(--cream); }
.admin-login input:focus { outline: none; border-color: var(--green); background: #fff; }
.admin-login .btn { width: 100%; }
.demo-note { margin-top: 18px; font-size: 12.5px; color: #7a6a3a; background: #fbf3dc; border: 1px solid var(--gold2); border-radius: 12px; padding: 12px 14px; }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.admin-tab { background: none; border: 0; padding: 12px 18px; font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -1px; }
.admin-tab.active { color: var(--green); border-bottom-color: var(--green); }
.admin-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 16px; flex-wrap: wrap; }
.admin-toolbar-actions { display: flex; gap: 10px; align-items: center; }
.admin-toolbar-actions input { padding: 10px 14px; border: 1.5px solid var(--line); border-radius: 999px; font-family: inherit; background: #fff; min-width: 220px; }
.admin-table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th { text-align: left; padding: 14px 16px; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); background: var(--cream2); white-space: nowrap; }
.admin-table td { padding: 12px 16px; border-top: 1px solid var(--line); vertical-align: middle; }
.admin-thumb { width: 46px; height: 46px; object-fit: cover; border-radius: 10px; background: var(--cream2); }
.admin-sku { font-size: 11.5px; color: var(--muted); }
.admin-actions { white-space: nowrap; text-align: right; }
.admin-actions .btn { margin-left: 6px; }
.btn.danger { background: var(--terra); border-color: var(--terra); }
.btn.danger:hover { background: #a9452f; border-color: #a9452f; }
.chip { display: inline-block; background: var(--cream2); border: 1px solid var(--line); color: var(--ink); font-size: 11px; padding: 2px 8px; border-radius: 999px; margin-right: 4px; }
.admin-empty { text-align: center; color: var(--muted); padding: 40px; }
.admin-loading { padding: 40px; text-align: center; color: var(--muted); }
.admin-editor { background: #fff; border: 1px solid var(--gold); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; box-shadow: var(--shadow); }
.admin-editor h3 { margin: 0 0 18px; font-size: 20px; }
.admin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.admin-grid label { display: block; font-size: 13px; }
.admin-grid label span { display: block; margin-bottom: 5px; font-weight: 500; color: #4c5652; }
.admin-grid label.col2 { grid-column: span 2; }
.admin-grid label.col3 { grid-column: span 3; }
.admin-grid label.check { display: flex; align-items: center; gap: 8px; align-self: end; padding-bottom: 12px; font-weight: 500; }
.admin-grid input, .admin-grid select, .admin-grid textarea { width: 100%; padding: 10px 12px; border: 1.5px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 14px; background: var(--cream); }
.admin-grid input:focus, .admin-grid select:focus, .admin-grid textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.admin-grid label.check input { width: auto; }
.admin-editor-actions { display: flex; gap: 10px; margin-top: 18px; }
@media (max-width: 760px) { .admin-grid { grid-template-columns: 1fr; } .admin-grid label.col2, .admin-grid label.col3 { grid-column: span 1; } .admin-toolbar-actions input { min-width: 0; } }

/* ===== Promotions ===== */
.promo-bar { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; padding: 9px 16px; background: linear-gradient(90deg, var(--terra), #d0674e); color: #fff; font-size: 13px; font-weight: 500; text-align: center; }
.promo-bar:hover { filter: brightness(1.04); }
.promo-tag { background: rgba(255,255,255,.22); padding: 2px 10px; border-radius: 999px; font-weight: 700; letter-spacing: .04em; }
.promo-name { font-family: var(--serif); font-weight: 600; font-size: 15px; }
.promo-count { font-variant-numeric: tabular-nums; opacity: .95; }
.promo-cta { font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.7); }
.badge.sale { background: var(--terra); color: #fff; font-weight: 700; }
.card-price.sale, .price.sale { color: var(--terra); }
.card-price.locked b { color: var(--terra); }
.sale-flag { display: inline-block; background: var(--terra); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 999px; vertical-align: middle; margin-left: 6px; letter-spacing: .03em; }
.sale-flag.sm { font-size: 10px; padding: 1px 7px; margin: 4px 0 0; }
.gate-sale { color: var(--terra); font-weight: 600; }

/* ===== Admin: promotions ===== */
.promo-status { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 999px; letter-spacing: .03em; }
.promo-status.live { background: #e2f0e6; color: #1f6d3a; }
.promo-status.scheduled { background: #fdf1d8; color: #8a6a1e; }
.promo-status.ended { background: #eee; color: #888; }
.promo-status.off { background: #f3e3df; color: #a9452f; }
.admin-help { font-size: 12px; color: var(--muted); margin: -6px 0 14px; }
#promoScopeFields { display: contents; }

/* Ensure the hidden attribute always wins over display rules */
[hidden] { display: none !important; }

/* ===== Star ratings ===== */
.stars { position: relative; display: inline-block; font-size: 13px; line-height: 1; letter-spacing: 1px; color: #e2d8c4; white-space: nowrap; font-family: Arial, sans-serif; }
.stars-fill { position: absolute; left: 0; top: 0; overflow: hidden; white-space: nowrap; color: var(--gold); }
.card-rating { display: flex; align-items: center; gap: 6px; margin: 2px 0; }
.rev-count { font-size: 12px; color: var(--muted); }
.rev-n { color: #b9b0a0; }
.pinfo-rating { display: flex; align-items: center; gap: 8px; margin: 2px 0 12px; }
.pinfo-rating .stars { font-size: 16px; }

/* ===== Header search + autocomplete ===== */
.hdr-search { position: relative; display: flex; align-items: center; }
.hdr-search input { width: 200px; max-width: 40vw; padding: 8px 32px 8px 14px; border: 1px solid var(--line); border-radius: 999px; font-family: inherit; font-size: 13px; background: var(--cream); transition: width .2s, border-color .2s, background .2s; }
.hdr-search input:focus { outline: none; border-color: var(--green); background: #fff; width: 230px; }
.hdr-search-btn { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); border: 0; background: none; cursor: pointer; font-size: 13px; padding: 2px; }
.ac-drop { position: absolute; top: calc(100% + 6px); right: 0; left: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); overflow: hidden; z-index: 40; }
.ac-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-bottom: 1px solid var(--line); }
.ac-item:last-child { border-bottom: 0; }
.ac-item:hover { background: var(--cream); }
.ac-item img { width: 36px; height: 36px; object-fit: cover; border-radius: 8px; background: var(--cream2); }
.ac-name { flex: 1; font-size: 13px; }
.ac-price { font-size: 12px; font-weight: 600; color: var(--green); white-space: nowrap; }
.ac-empty { padding: 14px; font-size: 13px; color: var(--muted); text-align: center; }

/* ===== Mini-cart drawer ===== */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(30,42,37,.42); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 60; }
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: 384px; max-width: 92vw; background: var(--cream); box-shadow: -20px 0 50px rgba(0,0,0,.2); transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1); z-index: 61; display: flex; flex-direction: column; }
.drawer.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { margin: 0; font-size: 22px; }
.drawer-x { background: none; border: 0; font-size: 17px; cursor: pointer; color: var(--muted); }
.drawer-x:hover { color: var(--ink); }
.drawer-ship { padding: 14px 22px 0; }
.ship-msg { font-size: 13px; margin-bottom: 8px; }
.ship-bar { height: 7px; border-radius: 999px; background: var(--cream2); overflow: hidden; }
.ship-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--green2), var(--gold)); transition: width .4s; }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 22px; }
.drawer-empty { text-align: center; padding: 50px 10px; color: var(--muted); }
.drawer-empty .btn { margin-top: 12px; }
.drawer-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.drawer-item img { width: 62px; height: 62px; object-fit: cover; border-radius: 10px; background: var(--cream2); }
.di-main { flex: 1; min-width: 0; }
.di-main a { font-family: var(--serif); font-size: 15px; font-weight: 600; display: block; }
.di-price { font-size: 13px; color: var(--green); font-weight: 600; margin: 3px 0 8px; }
.di-price s { color: var(--muted); font-weight: 400; margin-left: 5px; }
.qty.sm { border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.qty.sm button { width: 28px; height: 28px; font-size: 15px; }
.qty.sm input { width: 32px; font-size: 13px; }
.di-remove { background: none; border: 0; color: var(--muted); cursor: pointer; font-size: 13px; align-self: flex-start; }
.di-remove:hover { color: var(--terra); }
.drawer-foot { padding: 18px 22px; border-top: 1px solid var(--line); background: #fff; }
.drawer-sub { display: flex; justify-content: space-between; align-items: baseline; font-size: 15px; margin-bottom: 12px; }
.drawer-sub b { font-size: 19px; }
.drawer-foot .btn { width: 100%; margin-bottom: 8px; }

/* ===== Rotating announcement ===== */
.announce { transition: opacity .3s; }
.announce.fade { opacity: 0; }

/* ===== Shop filters ===== */
.fl-check { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #4c5652; padding: 5px 0; cursor: pointer; }
.fl-check input { accent-color: var(--green); }
.fl-price { margin: 10px 0 2px; }
.fl-label { font-size: 13px; color: var(--muted); display: block; margin-bottom: 6px; }
.fl-price-row { display: flex; align-items: center; gap: 8px; }
.fl-price-row input { width: 100%; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; font-family: inherit; background: var(--cream); }
.fl-clear { margin-top: 14px; background: none; border: 0; color: var(--green); font-family: inherit; font-size: 13px; cursor: pointer; text-decoration: underline; padding: 0; }

/* ===== Reviews ===== */
.reviews { padding: 12px 0 40px; border-top: 1px solid var(--line); }
.reviews-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.reviews-score { font-family: var(--serif); font-size: 44px; font-weight: 700; color: var(--green); line-height: 1; }
.reviews-head .stars { font-size: 18px; }
.reviews-count { font-size: 12px; color: var(--muted); margin-top: 4px; }
.reviews-list { display: grid; gap: 14px; max-width: 760px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; }
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; gap: 10px; }
.review-top b { font-size: 14px; }
.review p { margin: 0; color: #4c5652; font-size: 14px; }

@media (max-width: 760px) {
  .hdr-search { width: 100%; order: -1; }
  .hdr-search input, .hdr-search input:focus { width: 100%; max-width: none; }
  .drawer { width: 100%; max-width: 100%; }
}

/* keep testimonial stars solid gold (not the fractional rating bar) */
.quote .stars { color: var(--gold); }

/* ===== Admin: image upload + collapsible ===== */
.req { color: var(--terra); }
.img-upload { display: flex; gap: 16px; align-items: flex-start; }
.img-preview { width: 96px; height: 96px; border-radius: 12px; border: 1px solid var(--line); background: var(--cream); display: grid; place-items: center; overflow: hidden; flex-shrink: 0; }
.img-preview img { width: 100%; height: 100%; object-fit: cover; }
.img-preview span { font-size: 11px; color: var(--muted); text-align: center; padding: 6px; }
.img-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; padding-top: 4px; }
.upload-btn { cursor: pointer; }
.img-hint { font-size: 12px; color: var(--muted); }
.more-toggle { display: inline-block; margin: 8px 0 14px; background: none; border: 0; color: var(--green); font-family: inherit; font-size: 13.5px; font-weight: 600; cursor: pointer; padding: 0; }
.more-toggle:hover { color: var(--green2); }
.more-fields { padding-top: 6px; border-top: 1px dashed var(--line); }
.admin-help { font-size: 13px; color: #4c5652; background: var(--cream2); border-radius: 12px; padding: 12px 16px; margin: 0 0 18px; }

/* ===== Admin: inline table editing ===== */
.cell-money { display: inline-flex; align-items: center; gap: 2px; }
.cell-edit { width: 74px; padding: 6px 8px; border: 1px solid var(--line); border-radius: 8px; font-family: inherit; font-size: 13.5px; background: #fff; transition: border-color .2s, background .2s; }
.cell-edit.stock { width: 62px; }
.cell-edit:hover { border-color: var(--gold); }
.cell-edit:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,77,58,.1); }
.cell-edit.saving { opacity: .6; }
.cell-edit.saved { border-color: #2e7d32; background: #eef7ee; }

/* ===== Sold out ===== */
.badge.sold { background: #6b7570; }
.stock.sold { color: #b0392a; font-weight: 600; }
.card:has(.badge.sold) .card-img img { opacity: .72; }

/* ===== Back to top ===== */
.to-top { position: fixed; right: 20px; bottom: 20px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--green); color: var(--cream); font-size: 20px; line-height: 1; cursor: pointer; box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .3s, transform .3s, background .2s; z-index: 50; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--green2); }

/* ===== Keyboard focus accessibility ===== */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, .tile:focus-visible, .card-img:focus-visible, summary:focus-visible {
  outline: 2px solid var(--green); outline-offset: 2px; border-radius: 4px;
}

/* ===== Product variants (storefront) ===== */
.variant-group { margin: 14px 0; }
.variant-label { font-size: 13px; font-weight: 600; color: #4c5652; margin-bottom: 8px; }
.variant-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-pill { border: 1.5px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 16px; font-family: inherit; font-size: 13.5px; cursor: pointer; transition: .2s; }
.variant-pill:hover { border-color: var(--green); }
.variant-pill.active { background: var(--green); color: var(--cream); border-color: var(--green); }
.di-opts, .cart-opts { font-size: 12px; color: var(--muted); }
.di-opts { margin: 1px 0 3px; }
.cart-opts { margin-top: 2px; }

/* ===== Coupon box (checkout) ===== */
.coupon-box { display: flex; gap: 8px; margin: 6px 0 4px; }
.coupon-box input { flex: 1; padding: 10px 12px; border: 1.5px solid var(--line); border-radius: 10px; font-family: inherit; text-transform: uppercase; background: var(--cream); }
.coupon-box input:focus { outline: none; border-color: var(--green); background: #fff; }
.coupon-box .btn-sm { width: auto; white-space: nowrap; }
.coupon-msg { font-size: 12.5px; min-height: 16px; margin-bottom: 6px; }
.coupon-msg.ok { color: #2e7d32; }
.coupon-msg.err { color: var(--terra); }
.coupon-remove { font-size: 11px; color: var(--muted); margin-left: 6px; }

/* ===== Admin dashboard ===== */
.dash-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 26px; }
.dash-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.dash-card .num { font-family: var(--serif); font-size: 34px; font-weight: 700; color: var(--green); line-height: 1; }
.dash-card .lbl { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.dash-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; }
.dash-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.dash-panel h3 { margin: 0 0 16px; font-size: 18px; }
.bar-row { display: grid; grid-template-columns: 130px 1fr 44px; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 13px; }
.bar-row .bar-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar-track { background: var(--cream2); border-radius: 999px; height: 12px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--green2), var(--gold)); border-radius: 999px; }
.bar-val { text-align: right; font-weight: 600; }
.low-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.low-item:last-child { border-bottom: 0; }
.low-item .n { font-weight: 600; color: var(--terra); }
.dash-empty { color: var(--muted); font-size: 14px; }
@media (max-width: 900px) { .dash-cards { grid-template-columns: 1fr 1fr; } .dash-grid { grid-template-columns: 1fr; } }

/* ===== Language toggle ===== */
.lang-toggle { border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 600; color: var(--green); }
.lang-toggle:hover { background: var(--cream2); }
