/* ===========================================================
   MyTravelTuners — shared stylesheet
   Palette: beige background, olive text, minimalist
   =========================================================== */

:root {
  --beige:        #F4EFE3;
  --beige-soft:   #EDE6D6;
  --beige-card:   #EFE6D2;
  --olive:        #5C6234;
  --olive-deep:   #444A22;
  --olive-mid:    #7C8350;
  --sage:         #9CAF88;
  --sage-soft:    #C5CEB3;
  --ink:          #3D3F30;
  --muted:        #8A8F70;
  --line:         #DED6C3;
  --shadow:       0 12px 40px rgba(68, 74, 34, 0.10);
  --shadow-sm:    0 4px 18px rgba(68, 74, 34, 0.08);
  --radius:       18px;
  --radius-sm:    10px;
  --maxw:         1140px;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--beige);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  color: var(--olive);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.2px;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }

p { color: var(--ink); }
a { color: var(--olive); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--olive-deep); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 3.5px; font-size: 0.74rem;
  font-weight: 600; color: var(--olive-mid); font-family: 'Inter', sans-serif;
}
.lead { font-size: 1.18rem; color: #55573f; max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 13px 28px; border-radius: 100px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease);
}
.btn-primary { background: var(--olive); color: var(--beige-card); }
.btn-primary:hover { background: var(--olive-deep); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--olive); border-color: var(--olive-mid); }
.btn-ghost:hover { background: var(--olive); color: var(--beige-card); transform: translateY(-3px); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 239, 227, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand img { height: 58px; display: block; }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.95rem; color: var(--ink);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0;
  background: var(--olive); transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--olive); }
.nav-right { display: flex; align-items: center; gap: 18px; }

.cart-btn {
  position: relative; background: none; border: none; cursor: pointer; color: var(--olive);
  display: inline-flex; align-items: center; padding: 6px;
}
.cart-btn svg { width: 24px; height: 24px; }
.cart-count {
  position: absolute; top: -4px; right: -6px; background: var(--sage);
  color: var(--olive-deep); font-size: 0.66rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; padding: 0 4px; font-family: 'Inter', sans-serif;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--olive); }
.nav-toggle svg { width: 28px; height: 28px; }

/* ---------- Sections ---------- */
section { padding: 92px 0; }
.section-head { max-width: 64ch; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head .eyebrow { margin-bottom: 14px; display: block; }
.section-head h2 { margin-bottom: 16px; }

.tint { background: var(--beige-soft); }
.tint-deep { background: linear-gradient(160deg, var(--olive) 0%, var(--olive-deep) 100%); }
.tint-deep h2, .tint-deep h3 { color: var(--beige-card); }
.tint-deep p { color: #E7E3D2; }
.tint-deep .eyebrow { color: var(--sage-soft); }

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 84px;
  position: relative;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--sage); font-style: italic; }
.hero .lead { margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  position: relative; aspect-ratio: 4/5; border-radius: 26px; overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(156,175,136,0.55), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(124,131,80,0.45), transparent 55%),
    linear-gradient(150deg, var(--beige-soft), var(--sage-soft));
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
}
.hero-visual .compass {
  width: 62%; opacity: 0.9;
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(-10px); } 50% { transform: translateY(10px); } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--beige-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sage-soft); }
.card .icon {
  width: 50px; height: 50px; border-radius: 14px; background: var(--beige-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--olive);
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.98rem; color: #56583f; }

/* ---------- Destination cards ---------- */
.dest {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px;
  display: flex; align-items: flex-end; color: #fff; padding: 26px;
  box-shadow: var(--shadow-sm); transition: transform .45s var(--ease);
}
.dest:hover { transform: translateY(-6px); }
.dest::before { content: ''; position: absolute; inset: 0; z-index: 0; transition: transform .6s var(--ease); }
.dest:hover::before { transform: scale(1.07); }
.dest::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(50,52,30,0.78)); z-index: 1; }
.dest .dest-body { position: relative; z-index: 2; }
.dest h3 { color: #fff; margin-bottom: 4px; }
.dest p { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.dest .tag {
  position: absolute; top: 18px; left: 18px; z-index: 2; background: rgba(244,239,227,0.92);
  color: var(--olive-deep); font-size: 0.72rem; font-weight: 700; padding: 5px 12px; border-radius: 100px;
  font-family: 'Inter', sans-serif; letter-spacing: 0.5px;
}
.d-santorini::before { background: linear-gradient(135deg,#7fa6c4,#dfc9a8); }
.d-kyoto::before     { background: linear-gradient(135deg,#b6c39c,#7c8350); }
.d-marrakech::before { background: linear-gradient(135deg,#d8a36b,#a86b3c); }
.d-lisbon::before    { background: linear-gradient(135deg,#e0b48c,#c98a86); }
.d-banff::before     { background: linear-gradient(135deg,#9cc0c4,#6f8a72); }
.d-tuscany::before   { background: linear-gradient(135deg,#c9b87f,#8a9a5b); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat .num {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 4.2rem); line-height: 1; color: var(--beige-card);
  display: inline-flex; align-items: baseline;
}
.tint .stat .num, .plain-stats .stat .num { color: var(--olive); }
.stat .num .suffix { font-size: 0.55em; margin-left: 2px; }
.stat .label { margin-top: 10px; font-size: 0.95rem; letter-spacing: 0.5px; }
.tint-deep .stat .label { color: var(--sage-soft); }

/* ---------- Products ---------- */
.product {
  background: var(--beige-card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product .thumb {
  aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; position: relative;
}
.product .thumb .ic { width: 54px; height: 54px; opacity: 0.92; }
.product .pbody { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product .ptype { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--olive-mid); font-weight: 600; margin-bottom: 8px; }
.product h3 { font-size: 1.3rem; margin-bottom: 8px; }
.product .pdesc { font-size: 0.92rem; color: #56583f; flex: 1; margin-bottom: 18px; }
.product .prow { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product .price { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--olive); }
.product .price small { font-size: 0.95rem; color: var(--muted); text-decoration: line-through; margin-right: 6px; font-weight: 400; }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(60,63,48,0.42); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease); z-index: 200;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 400px; max-width: 90vw;
  background: var(--beige); z-index: 201; box-shadow: -10px 0 40px rgba(68,74,34,0.18);
  transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; border-bottom: 1px solid var(--line); }
.cart-head h3 { margin: 0; }
.cart-close { background: none; border: none; cursor: pointer; color: var(--olive); font-size: 1.6rem; line-height: 1; }
.cart-items { flex: 1; overflow-y: auto; padding: 14px 26px; }
.cart-empty { text-align: center; color: var(--muted); padding: 50px 0; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-item .ci-thumb { width: 52px; height: 52px; border-radius: 10px; flex-shrink: 0; display:flex;align-items:center;justify-content:center; color:#fff; }
.cart-item .ci-info { flex: 1; }
.cart-item .ci-info h4 { font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--ink); margin: 0 0 2px; }
.cart-item .ci-info .ci-price { font-size: 0.85rem; color: var(--olive-mid); }
.qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty button { width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--line); background: var(--beige-card); cursor: pointer; color: var(--olive); font-weight: 700; line-height: 1; }
.qty span { font-size: 0.85rem; min-width: 16px; text-align: center; }
.ci-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 0.78rem; text-decoration: underline; }
.cart-foot { padding: 22px 26px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-total .t-label { font-size: 0.95rem; color: var(--ink); }
.cart-total .t-amt { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--olive); }
.cart-foot .btn { width: 100%; justify-content: center; }
.cart-note { text-align: center; font-size: 0.76rem; color: var(--muted); margin-top: 10px; }

.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--olive-deep); color: var(--beige-card); padding: 12px 24px; border-radius: 100px;
  font-size: 0.9rem; font-weight: 500; box-shadow: var(--shadow); z-index: 300;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 80px 0 40px; text-align: center; }
.page-hero .eyebrow { margin-bottom: 14px; display: block; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { margin: 0 auto; }

/* ---------- Split / feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-visual { order: -1; }
.split-visual {
  aspect-ratio: 5/4; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  background: linear-gradient(150deg, var(--sage-soft), var(--beige-soft));
  display: flex; align-items: center; justify-content: center; color: var(--olive);
}
.split-visual svg { width: 40%; opacity: 0.85; }

/* ---------- FAQ / accordion ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 4px; font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--olive);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { transition: transform .35s var(--ease); flex-shrink: 0; color: var(--olive-mid); }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 24px; color: #56583f; font-size: 0.98rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--olive); margin-bottom: 7px; font-family: 'Inter', sans-serif; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--beige-card); font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(156,175,136,0.22);
}
.field textarea { resize: vertical; min-height: 130px; }
.contact-info .ci-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-info .ci-line .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--beige-soft); display: flex; align-items: center; justify-content: center; color: var(--olive); flex-shrink: 0; }
.contact-info .ci-line h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--ink); margin: 0 0 2px; }
.contact-info .ci-line p, .contact-info .ci-line a { font-size: 0.92rem; color: #56583f; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 6px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--olive-deep); color: #E7E3D2; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.site-footer h4 { color: var(--beige-card); font-family: 'Inter', sans-serif; font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: #D9D4C2; font-size: 0.94rem; display: block; margin-bottom: 11px; }
.site-footer a:hover { color: #fff; }
.footer-brand p { color: #C7C3B0; font-size: 0.94rem; max-width: 34ch; margin-top: 16px; }
.footer-brand .logo-foot { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--beige-card); font-weight: 600; }
.footer-brand .logo-foot span { color: var(--sage); }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(231,227,210,0.3);
  display: flex; align-items: center; justify-content: center; margin: 0;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.socials a:hover { background: var(--sage); border-color: var(--sage); transform: translateY(-3px); }
.socials a svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(231,227,210,0.18); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 0.85rem; color: #B8B4A2;
}
.footer-bottom a { display: inline; margin: 0; }

/* ===========================================================
   Scroll animations (glide-in)
   =========================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-44px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(44px);  transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-left.in, .reveal-right.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-scale.in { opacity: 1; transform: none; }
/* stagger */
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; } .d6 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; transition: none; }
  .hero-visual .compass { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.rev .split-visual { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  section { padding: 64px 0; }
  .nav-links {
    position: fixed; top: 78px; left: 0; right: 0; background: var(--beige);
    flex-direction: column; gap: 0; padding: 10px 0; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm); transform: translateY(-130%); transition: transform .4s var(--ease);
    height: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 28px; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
}
@media (max-width: 460px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   Additions: cookie banner, legal pages, footer legal, 3-stat row
   =========================================================== */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; max-width: 560px; margin: 0 auto;
  background: var(--beige-card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 20px 22px; z-index: 250; display: none;
}
.cookie-banner.show { display: block; animation: cookieUp .5s var(--ease); }
@keyframes cookieUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.cookie-banner p { font-size: 0.9rem; color: #56583f; margin-bottom: 14px; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }

.legal { max-width: 800px; margin: 0 auto; }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; }
.legal h2 { font-size: 1.65rem; margin: 36px 0 12px; }
.legal h3 { font-size: 1.12rem; margin: 22px 0 8px; font-family: 'Inter', sans-serif; color: var(--olive-deep); font-weight: 600; }
.legal p, .legal li { color: #4f5138; font-size: 1rem; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 8px; }
.legal a { text-decoration: underline; }
.legal-note { background: var(--beige-soft); border-radius: var(--radius); padding: 18px 22px; font-size: 0.92rem; color: #56583f; margin: 24px 0; }

.footer-legal a { display: inline-block; margin-left: 18px; }
.footer-legal a:first-child { margin-left: 0; }

.stats-3 { grid-template-columns: repeat(3, 1fr); max-width: 820px; margin: 0 auto; }
@media (max-width: 760px) { .stats-3 { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Shop: featured template + coming-soon ---------- */
.product.featured { border-color: var(--sage); box-shadow: var(--shadow-sm); }
.product.featured .ptype { color: var(--olive); }
.btn-soon { background: var(--beige-soft); color: var(--muted); border-color: var(--line); cursor: default; }
.btn-soon:hover { transform: none; background: var(--beige-soft); color: var(--muted); box-shadow: none; }

.stats-2 { grid-template-columns: repeat(2, 1fr); max-width: 560px; margin: 0 auto; }
