/* ==========================================================================
   F Gear Reviews — "Ivoire" Design System
   Light, airy, premium & chic: ivory + warm espresso + champagne gold
   Type: Cormorant Garamond (display serif) + Jost (chic sans)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --paper:      #FCFAF6;   /* ivory */
  --paper-2:    #F4EFE4;   /* warm greige panel */
  --paper-3:    #ECE4D5;
  --ink:        #2C2823;   /* warm espresso (used instead of black) */
  --ink-soft:   #524B40;
  --muted:      #8C8474;
  --muted-2:    #ADA491;
  --line:       #E8E0D0;
  --accent:     #A67C2E;   /* deep champagne gold — text, buttons */
  --accent-2:   #C9A24B;   /* bright gold — decorative */
  --accent-ink: #3E2F11;
  --gold:       #C0982F;   /* stars */
  --green:      #1F8A5A;
  --footer:     #241F1A;   /* deep espresso, not black */
  --radius:     18px;
  --radius-sm:  12px;
  --shadow:     0 24px 60px -28px rgba(44,40,35,.30);
  --shadow-sm:  0 10px 30px -16px rgba(44,40,35,.18);
  --maxw:       1160px;
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Jost', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; letter-spacing: 0; margin: 0 0 .4em; color: var(--ink); }
h1 { font-size: clamp(2.9rem, 6vw, 5rem); font-weight: 600; }
h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h3 { font-size: 1.45rem; }
p  { margin: 0 0 1rem; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 60px 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 500;
  font-size: .75rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 62ch; font-weight: 300; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .16em;
  padding: 15px 30px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: all .2s ease; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #FCFAF6; box-shadow: 0 14px 34px -14px rgba(166,124,46,.6); }
.btn--primary:hover { background: #916A22; }
.btn--dark { background: var(--ink); color: #FCFAF6; }
.btn--dark:hover { background: #3A342B; }
.btn--ghost { background: transparent; border-color: var(--accent); color: var(--accent); }
.btn--ghost:hover { background: var(--accent); color: #FCFAF6; }
.btn--light { background: var(--ink); color: #FCFAF6; }
.btn--lg { padding: 18px 40px; font-size: .82rem; }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252,250,246,.85); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(166,124,46,.28);
}
.site-head__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; letter-spacing: .01em; color: var(--ink); }
.brand__mark {
  width: 38px; height: 38px; border-radius: 9px; background: var(--accent); color: #FCFAF6;
  display: grid; place-items: center; font-size: .82rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0;
  white-space: nowrap; overflow: hidden; line-height: 1;
}
.brand__mark b { color: #FCFAF6; }
.brand span span { font-style: italic; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-weight: 400; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink); opacity: .78; }
.nav a:hover { opacity: 1; color: var(--accent); }
.nav .btn { padding: 11px 22px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #FCFAF6 0%, #F4EFE4 100%); color: var(--ink); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 70% at 82% 8%, rgba(201,162,75,.20), transparent 62%),
    radial-gradient(46% 56% at 6% 96%, rgba(201,162,75,.10), transparent 60%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; padding: 104px 0 96px; }
.hero h1 { color: var(--ink); }
.hero h1 .hl { color: var(--accent); font-style: italic; font-weight: 600; }
.hero .lead { color: var(--ink-soft); font-size: 1.2rem; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero__trust { display: flex; gap: 42px; margin-top: 52px; flex-wrap: wrap; }
.hero__trust .num { font-family: var(--font-head); font-weight: 600; font-size: 2.4rem; color: var(--ink); line-height: 1; }
.hero__trust .lbl { font-size: .72rem; color: var(--muted); letter-spacing: .16em; text-transform: uppercase; margin-top: 6px; }

.hero__card {
  background: #fff; color: var(--ink); border-radius: 20px; padding: 30px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.hero__card .stars { font-size: 1.3rem; }
.hero__card .rating-big { font-family: var(--font-head); font-weight: 600; font-size: 4rem; line-height: 1; color: var(--ink); }
.hero__card .rating-row { display: flex; align-items: baseline; gap: 16px; margin-bottom: 6px; }
.hero__card .of { color: var(--muted); font-weight: 300; font-size: .9rem; }
.bars { margin-top: 20px; display: grid; gap: 9px; }
.bar-row { display: grid; grid-template-columns: 42px 1fr 40px; align-items: center; gap: 12px; font-size: .8rem; color: var(--muted); }
.bar { height: 7px; background: var(--paper-2); border-radius: 100px; overflow: hidden; }
.bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 100px; }

/* ---------- Stars ---------- */
.stars { color: var(--gold); letter-spacing: 3px; }
.stars--ink { color: var(--accent); }

/* ---------- Logos strip ---------- */
.logos { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.logos__row { display: flex; align-items: center; justify-content: center; gap: 46px; flex-wrap: wrap; padding: 26px 0; font-family: var(--font-body); font-weight: 400; text-transform: uppercase; letter-spacing: .18em; color: var(--muted-2); font-size: .78rem; }

/* ---------- Grid / review wall ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.rcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 13px;
  break-inside: avoid;
}
.rcard__top { display: flex; align-items: center; justify-content: space-between; }
.rcard__stars { font-size: 1rem; }
.rcard__verified { font-size: .68rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: var(--green); display: inline-flex; align-items: center; gap: 5px; }
.rcard__body { color: var(--ink); font-size: 1.15rem; font-family: var(--font-head); font-weight: 500; line-height: 1.45; }
.rcard__prod { font-size: .72rem; color: var(--accent); font-weight: 500; text-transform: uppercase; letter-spacing: .12em; }
.rcard__foot { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 10px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; font-family: var(--font-body); font-weight: 500; color: var(--accent); font-size: .9rem; border: 1px solid var(--line); }
.rcard__name { font-weight: 500; font-size: .92rem; color: var(--ink); }
.rcard__meta { font-size: .78rem; color: var(--muted); }

.masonry { columns: 3; column-gap: 24px; }
.masonry .rcard { margin-bottom: 24px; }

/* ---------- Product cards ---------- */
.pcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pcard__img { aspect-ratio: 1/1; background: var(--paper-2); display: grid; place-items: center; overflow: hidden; }
.pcard__img img { width: 100%; height: 100%; object-fit: contain; padding: 22px; }
.pcard__body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pcard__cat { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.pcard__title { font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; color: var(--ink); }
.pcard__rate { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--muted); }
.pcard__price { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; color: var(--ink); margin-top: 4px; }
.pcard__foot { margin-top: auto; padding-top: 16px; display: flex; gap: 10px; }
.pcard__foot .btn { flex: 1; justify-content: center; padding: 12px 14px; font-size: .72rem; }

/* ---------- "Why" section (was dark) — now light & chic ---------- */
.dark { background: var(--paper-2); color: var(--ink); }
.dark h2, .dark h3 { color: var(--ink); }
.dark .lead { color: var(--ink-soft); }
.dark .eyebrow { color: var(--accent); }

.feat { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feat__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.feat__ic { width: 52px; height: 52px; border-radius: 50%; background: rgba(166,124,46,.12); color: var(--accent); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 18px; }
.feat__item h3 { font-size: 1.4rem; }
.feat__item p { color: var(--muted); font-size: .98rem; font-weight: 300; margin: 0; }

/* ---------- Blog ---------- */
.bcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column; }
.bcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.bcard__img { aspect-ratio: 16/10; background: var(--paper-2); overflow: hidden; }
.bcard__img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.bcard__body { padding: 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.bcard__tag { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.bcard__title { font-family: var(--font-head); font-weight: 600; font-size: 1.6rem; line-height: 1.15; color: var(--ink); }
.bcard__ex { color: var(--muted); font-size: .98rem; font-weight: 300; margin: 0; }
.bcard__more { margin-top: auto; font-family: var(--font-body); font-weight: 500; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); font-size: .76rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; margin-bottom: 12px; padding: 4px 6px; }
.faq summary { cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; color: var(--ink); padding: 18px 20px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-body); font-size: 1.4rem; color: var(--accent); font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq p { padding: 0 20px 20px; color: var(--ink-soft); font-weight: 300; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--paper-2); border: 1px solid var(--line); color: var(--ink); border-radius: 24px; padding: 68px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 0%, rgba(201,162,75,.16), transparent 70%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--ink); }
.cta-band .lead { color: var(--ink-soft); }
.cta-band .btn--light { background: var(--accent); color: #FCFAF6; }
.cta-band .btn--light:hover { background: #916A22; }

/* ---------- Footer ---------- */
.foot { background: var(--footer); color: rgba(252,250,246,.66); padding: 68px 0 36px; }
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.foot h4 { color: #FCFAF6; font-family: var(--font-body); font-weight: 500; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px; }
.foot a { display: block; padding: 6px 0; color: rgba(252,250,246,.62); font-size: .9rem; font-weight: 300; }
.foot a:hover { color: var(--accent-2); }
.foot__bottom { border-top: 1px solid rgba(252,250,246,.14); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; color: rgba(252,250,246,.44); }
.foot .brand { color: #FCFAF6; margin-bottom: 14px; }
.foot .brand__mark { background: var(--accent); }
.foot p { color: rgba(252,250,246,.6); font-weight: 300; }

/* ---------- Note banner ---------- */
.note {
  background: rgba(166,124,46,.09); border: 1px dashed var(--accent);
  border-radius: var(--radius-sm); padding: 16px 20px; font-size: .92rem; color: var(--accent-ink); font-weight: 300;
  margin: 18px 0;
}
.note b { color: var(--accent-ink); font-weight: 500; }

/* ==========================================================================
   Review funnel
   ========================================================================== */
.funnel { max-width: 640px; margin: 0 auto; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 46px; }
.rate-stars { display: flex; justify-content: center; gap: 10px; margin: 30px 0; }
.rate-stars button { background: none; border: 0; font-size: 3rem; line-height: 1; cursor: pointer; color: var(--line); transition: transform .1s ease, color .1s ease; padding: 0; }
.rate-stars button:hover { transform: scale(1.14); }
.rate-stars button.on { color: var(--gold); }
.step { display: none; }
.step.active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.field { margin-bottom: 20px; text-align: left; }
.field label { display: block; font-family: var(--font-body); font-weight: 500; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; background: var(--paper); color: var(--ink); transition: border .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 130px; resize: vertical; }
.ext-links { display: grid; gap: 12px; margin: 24px 0; }
.ext-link { display: flex; align-items: center; gap: 14px; padding: 17px 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font-body); font-weight: 500; color: var(--ink); transition: border .15s, transform .15s; }
.ext-link:hover { border-color: var(--accent); transform: translateX(3px); }
.ext-link .ic { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; background: var(--paper-2); font-weight: 600; color: var(--accent); }
.ext-link .arr { margin-left: auto; color: var(--accent); }
.thanks-ico { font-size: 3.4rem; }

/* ---------- Article ---------- */
.article { max-width: 780px; margin: 0 auto; }
.article__head { text-align: center; margin-bottom: 38px; }
.article__meta { color: var(--muted); font-size: .9rem; font-weight: 300; }
.article__hero { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 32px; }
.article__hero img { width: 100%; height: auto; display: block; }
/* ---- Real F Gear logo + pricing + product photo (added) ---- */
.brand__logo{height:30px;width:auto;display:block;filter:brightness(0);opacity:.85}
.brand__rev{font-family:var(--font-head);font-style:italic;font-weight:600;font-size:1.5rem;color:var(--accent);line-height:1}
.prod-photo{background:var(--paper-2);border-radius:20px;aspect-ratio:4/3;display:grid;place-items:center;overflow:hidden;padding:24px}
.prod-photo img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain}
.prod-photo--card{border-radius:0;padding:16px}
.price-now{font-family:var(--font-head);font-weight:600;font-size:1.25rem;color:var(--ink)}
.price-now--lg{font-size:1.9rem}
.price-mrp{color:var(--muted);text-decoration:line-through;font-size:.95rem;margin-left:6px}
.price-off{color:var(--green);font-weight:500;font-size:.8rem;margin-left:6px}

/* ---- Product page photo: premium gallery / lightbox treatment ---- */
.prod-photo:not(.prod-photo--card){
  max-width: 440px; margin-inline: auto; aspect-ratio: 1/1;
  padding: 38px;
  background: radial-gradient(120% 120% at 50% 38%, #ffffff 0%, #faf5ec 55%, #f2e8d6 100%);
  border: 1px solid rgba(179,142,84,.28);
  border-radius: 22px;
  box-shadow: 0 34px 70px -34px rgba(74,52,28,.42), inset 0 1px 0 rgba(255,255,255,.7);
}
.prod-photo:not(.prod-photo--card) img{
  mix-blend-mode: multiply;
  filter: drop-shadow(0 26px 26px rgba(60,40,20,.22));
}

/* ---- Mobile polish ---- */
html, body { max-width: 100%; overflow-x: hidden; }
@media (max-width: 768px){
  .hero__inner { grid-template-columns: 1fr !important; gap: 30px; padding: 56px 0; }
  .prod-photo:not(.prod-photo--card){ max-width: 300px; }
  .nav { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 640px){
  .wrap { padding: 0 18px; }
  .section { padding: 48px 0; }
  h1 { font-size: clamp(2.1rem, 8.5vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2.1rem); }
  .lead { font-size: 1.05rem; }
  .btn { white-space: normal; text-align: center; letter-spacing: .1em; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: 20px; }
  .hero__trust .num { font-size: 1.7rem; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .brand__logo { height: 24px; }
  .brand__rev { font-size: 1.1rem; }
  .brand { gap: 8px; }
  .site-head__inner { height: 62px; }
  .cta-band { padding: 34px 20px; }
  .hero__card { padding: 22px; }
  .hero__card .rating-big { font-size: 3rem; }
  .hero__inner .btn { width: 100%; justify-content: center; }
}

.logos__lead{color:var(--ink);font-weight:600;letter-spacing:.2em}
.logos__row{gap:52px}

/* blog article verified reviews */
.blog-reviews{display:grid;gap:16px;margin:20px 0 34px}
.brev{background:var(--paper-2);border:1px solid var(--line);border-radius:14px;padding:20px 22px}
.brev .stars{color:var(--gold);letter-spacing:2px;font-size:1rem}
.brev__t{margin:10px 0 12px;color:var(--ink-soft);font-style:italic}
.brev__by{display:flex;gap:10px;align-items:baseline;font-size:.85rem}
.brev__by b{color:var(--ink);font-weight:600}
.brev__by span{color:var(--muted);font-size:.78rem;letter-spacing:.02em}

/* ---- Review blog article body, pros/cons, verdict (added) ---- */
.crumb{max-width:780px;margin:18px auto 0;color:var(--muted);font-size:.82rem;letter-spacing:.02em}
.crumb a{color:var(--muted)}
.crumb a:hover{color:var(--accent)}
.article-body{font-size:1.06rem;line-height:1.75;color:var(--ink-soft)}
.article-body p{margin:0 0 20px}
.article-body h2{font-family:var(--font-head);font-weight:600;font-size:clamp(1.5rem,3vw,2rem);color:var(--ink);margin:38px 0 12px}
.article-body ul{margin:0 0 22px;padding-left:1.15em}
.article-body li{margin:6px 0}
.article-body blockquote{margin:26px 0;padding:18px 24px;border-left:3px solid var(--accent);
  background:var(--paper-2);border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  font-family:var(--font-head);font-style:italic;font-size:1.3rem;line-height:1.4;color:var(--ink)}
.pros-cons{display:grid;grid-template-columns:1fr 1fr;gap:28px;margin:30px 0}
.pros h3,.cons h3{font-family:var(--font-body);font-weight:600;font-size:1.05rem;color:var(--ink);margin:0 0 10px}
.pros ul,.cons ul{margin:0;padding-left:1.15em}
.pros li,.cons li{margin:7px 0;line-height:1.55}
@media(max-width:640px){.pros-cons{grid-template-columns:1fr;gap:16px}}
.verdict{margin:34px 0 10px;padding:26px 28px;background:var(--paper-2);border:1px solid var(--line);border-radius:var(--radius-sm)}
.verdict h3{font-family:var(--font-head);font-weight:700;font-size:1.5rem;color:var(--ink);margin:0 0 10px}
.verdict p{margin:0;color:var(--ink-soft)}
@media(max-width:640px){.pros-cons{grid-template-columns:1fr}}

/* ---- Search + category toolbar (products / blog) ---- */
.toolbar{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;max-width:640px;margin:0 auto 52px}
.toolbar__search{flex:1 1 320px;min-width:220px;padding:13px 18px;border:1px solid var(--line);border-radius:999px;font-family:var(--font-body);font-size:1rem;background:#fff;color:var(--ink)}
.toolbar__search:focus{outline:none;border-color:var(--accent)}
.toolbar__select{flex:0 0 auto;padding:13px 40px 13px 18px;border:1px solid var(--line);border-radius:999px;font-family:var(--font-body);font-size:.95rem;background:#fff;color:var(--ink);cursor:pointer;
  -webkit-appearance:none;appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A67C2E' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 16px center}
.toolbar__select:focus{outline:none;border-color:var(--accent)}
@media(max-width:640px){.toolbar{flex-direction:column}.toolbar__select{width:100%}}

/* ---- Colour swatches (product page) + colour badge (cards) ---- */
.swatches{margin:6px 0 0}
.swatches__lbl{display:block;font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin-bottom:10px}
.swatches__row{display:flex;gap:10px;flex-wrap:wrap}
.swatch{display:flex;flex-direction:column;align-items:center;gap:5px;width:66px;text-align:center;font-size:.67rem;color:var(--muted);line-height:1.2}
.swatch img{width:58px;height:58px;object-fit:contain;background:var(--paper-2);border:1px solid var(--line);border-radius:10px;padding:5px;transition:border-color .15s}
.swatch:hover img{border-color:var(--accent)}
.swatch--current img{border-color:var(--accent);border-width:2px}
.swatch--current span{color:var(--ink);font-weight:500}
.prod-photo--card{position:relative}
.pcard__colours{position:absolute;top:10px;right:10px;background:rgba(44,40,35,.82);color:#fff;font-size:.64rem;letter-spacing:.06em;padding:4px 9px;border-radius:999px}
.bcard__img{position:relative}
.bcard__colours{position:absolute;top:10px;right:10px;background:rgba(44,40,35,.82);color:#fff;font-size:.64rem;letter-spacing:.06em;padding:4px 9px;border-radius:999px}

/* ---- Per-product marketplace ratings strip + size options ---- */
.mkt-ratings{margin:14px 0 2px}
.mkt-ratings__lbl{display:block;font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin-bottom:9px}
.mkt-ratings__row{display:flex;gap:10px;flex-wrap:wrap}
.mkt{background:#fff;border:1px solid var(--line);border-radius:999px;padding:7px 15px;font-size:.82rem;color:var(--ink-soft)}
.mkt b{color:var(--ink);font-weight:600;margin-right:5px}
.mkt .st{color:var(--gold)}
.sizes{margin:18px 0 0}
.sizes__lbl{display:block;font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin-bottom:9px}
.sizes__row{display:flex;gap:8px;flex-wrap:wrap}
.size{border:1px solid var(--line);border-radius:10px;padding:9px 15px;font-size:.84rem;color:var(--ink-soft);background:#fff;transition:border-color .15s}
.size:hover{border-color:var(--accent)}
.size--current{border-color:var(--accent);border-width:2px;color:var(--ink);font-weight:600}

.foot__bottom a{display:inline;padding:0}
.foot__bottom span{display:inline-block}

/* --- refinements --- */
.cta-band .lead{max-width:62ch;margin-left:auto;margin-right:auto;text-align:center}
.foot{padding:52px 0 30px}
.foot__grid{grid-template-columns:1.4fr 1fr 1fr 1fr 1fr;gap:28px}
@media(max-width:900px){.foot__grid{grid-template-columns:1fr 1fr 1fr}}
@media(max-width:560px){.foot__grid{grid-template-columns:1fr 1fr}}

.brand__logo{filter:none;opacity:1}

.foot__grid{grid-template-columns:1.4fr 1fr 1fr 1fr}

.brand{flex-wrap:nowrap;white-space:nowrap}
.brand__logo{flex:0 0 auto;max-width:none}

/* products-page card: show full product (square box, contain) + clickable card */
.prod-photo--card{aspect-ratio:1/1;padding:18px}
.prod-photo--card img{width:100%;height:100%;object-fit:contain;max-width:none;max-height:none}
.pcard__imglink{display:block}
a.pcard__title{text-decoration:none;color:var(--ink)}
a.pcard__title:hover{color:var(--accent)}

/* Header "Shop fgear.in" CTA — bright gold + espresso text + arrow (Option 3) */
.site-head .btn--primary{background:var(--accent-2);color:#000000;box-shadow:0 12px 26px -12px rgba(201,162,75,.7);transition:transform .2s ease,background .2s ease,box-shadow .2s ease}
.site-head .btn--primary::after{content:"→";margin-left:8px;display:inline-block;transition:transform .2s ease}
.site-head .btn--primary:hover{background:#D8B25C;color:#000000;transform:translateY(-2px);box-shadow:0 16px 30px -12px rgba(201,162,75,.8)}
.site-head .btn--primary:hover::after{transform:translateX(4px)}
