/* ============================================================
   BULGAARSE TOPWIJNEN — Remake design system
   Editorial wine boutique · oxblood + parchment + brass
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Hanken+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  /* palette */
  --wine:        #6b1220;   /* oxblood primary */
  --wine-deep:   #4a0c16;
  --wine-glow:   #8a1a2c;
  --parchment:   #f6efe2;   /* warm page bg */
  --parchment-2: #efe5d3;
  --cream:       #fbf7ee;
  --ink:         #201613;   /* near-black espresso */
  --ink-soft:    #4a3b34;
  --brass:       #b08544;   /* gold accent */
  --brass-light: #cca868;
  --line:        #ddceb3;
  --white:       #ffffff;

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Hanken Grotesk', system-ui, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --radius: 4px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--wine); color: var(--cream); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---- typography ---- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -.01em; }
.eyebrow {
  font-family: var(--sans);
  font-size: .74rem; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--brass);
  display: inline-flex; align-items: center; gap: .7rem;
}
.eyebrow::before { content:""; width: 34px; height: 1px; background: var(--brass); opacity:.7; }
.eyebrow.center::after { content:""; width: 34px; height: 1px; background: var(--brass); opacity:.7; }

/* ---- folk embroidery divider ---- */
.folk {
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='22' viewBox='0 0 48 22'%3E%3Cg fill='%236b1220'%3E%3Cpath d='M24 1l3 3-3 3-3-3z'/%3E%3Cpath d='M12 8l3 3-3 3-3-3zM36 8l3 3-3 3-3-3z'/%3E%3Cpath d='M24 15l3 3-3 3-3-3z'/%3E%3Cpath d='M0 8l3 3-3 3zM48 8l-3 3 3 3z'/%3E%3C/g%3E%3Cg fill='%23b08544'%3E%3Cpath d='M24 8l2 2-2 2-2-2z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  opacity: .5;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 30px; border-radius: var(--radius);
  cursor: pointer; border: 1px solid transparent;
  transition: all .35s var(--ease);
}
.btn-wine { background: var(--wine); color: var(--cream); }
.btn-wine:hover { background: var(--wine-deep); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(74,12,22,.7); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-gold { background: var(--brass); color: var(--ink); }
.btn-gold:hover { background: var(--brass-light); }
.btn-lg { padding: 18px 40px; }
.link-arrow { font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: .78rem; color: var(--wine); display:inline-flex; gap:.5rem; align-items:center; }
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover span { transform: translateX(6px); }

/* ============================================================
   TOP BAR + NAV
   ============================================================ */
.topbar {
  background: var(--wine-deep); color: #e9d8c2;
  font-size: .78rem; letter-spacing: .04em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar a { color: #e9d8c2; }
.topbar .tb-left { display:flex; gap: 1.6rem; align-items:center; }
.topbar .tb-right { display:flex; gap: 1.2rem; align-items:center; }
.topbar .langs { display:flex; gap:.5rem; }
.topbar .langs a { opacity:.55; font-weight:600; }
.topbar .langs a.on, .topbar .langs a:hover { opacity:1; color:#fff; }

header.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,239,226,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
header.nav.scrolled { box-shadow: 0 10px 30px -18px rgba(32,22,19,.4); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 82px; }

.brand { display:flex; align-items:center; gap: 13px; }
.brand .glyph {
  width: 40px; height: 40px; flex: 0 0 40px;
  display:grid; place-items:center;
  border: 1.5px solid var(--wine); border-radius: 50%;
  color: var(--wine);
}
.brand .glyph svg { width: 19px; height: 19px; }
.brand .name { line-height: 1; }
.brand .name b { font-family: var(--serif); font-weight: 600; font-size: 1.18rem; letter-spacing: .01em; display:block; color: var(--ink); }
.brand .name small { font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--brass); font-weight: 600; }

.menu { display: flex; gap: 30px; align-items:center; }
.menu a {
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-soft); position: relative; padding: 6px 0;
}
.menu a::after { content:""; position:absolute; left:0; bottom:0; width:0; height:1.5px; background: var(--wine); transition: width .3s var(--ease); }
.menu a:hover { color: var(--wine); }
.menu a:hover::after { width: 100%; }

.nav-actions { display:flex; align-items:center; gap: 18px; }
.icon-btn { color: var(--ink); display:grid; place-items:center; position:relative; transition: color .2s; }
.icon-btn:hover { color: var(--wine); }
.icon-btn .badge { position:absolute; top:-7px; right:-9px; background: var(--wine); color:#fff; font-size:.6rem; font-weight:700; width:16px; height:16px; border-radius:50%; display:grid; place-items:center; font-family:var(--sans); }
.burger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; }
.burger span { width:24px; height:2px; background: var(--ink); transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--parchment); }
.hero::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(900px 500px at 78% -5%, rgba(138,26,44,.16), transparent 60%),
    radial-gradient(700px 600px at 10% 110%, rgba(176,133,68,.14), transparent 60%);
  pointer-events:none;
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; min-height: 640px; padding-top: 40px; padding-bottom: 40px; }
.hero-copy { max-width: 560px; }
.hero-copy h1 { font-size: clamp(3rem, 6vw, 5.3rem); margin: 22px 0 20px; color: var(--ink); }
.hero-copy h1 em { font-style: italic; color: var(--wine); }
.hero-copy .lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 480px; margin-bottom: 34px; }
.hero-cta { display:flex; gap: 14px; flex-wrap: wrap; align-items:center; }
.hero-meta { display:flex; gap: 30px; margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-meta .stat b { font-family: var(--serif); font-size: 2rem; color: var(--wine); display:block; line-height:1; }
.hero-meta .stat span { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

.hero-visual { position: relative; height: 560px; }
.hero-visual .frame {
  position:absolute; inset: 0;
  border-radius: 260px 260px 12px 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(74,12,22,.6);
  border: 1px solid rgba(176,133,68,.4);
}
.hero-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .float-card {
  position:absolute; bottom: 28px; left: -34px;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 8px; padding: 16px 20px; width: 240px;
  box-shadow: 0 24px 50px -22px rgba(32,22,19,.5);
  display:flex; gap: 14px; align-items:center;
}
.hero-visual .float-card .fc-badge { width:44px;height:44px;flex:0 0 44px;border-radius:50%;background:var(--wine);color:var(--cream);display:grid;place-items:center;font-family:var(--serif);font-size:1.1rem; }
.hero-visual .float-card b { font-family:var(--serif); font-size:1rem; display:block; line-height:1.2; }
.hero-visual .float-card span { font-size:.76rem; color:var(--ink-soft); }
.hero-visual .stamp {
  position:absolute; top: 18px; right: -18px; z-index: 3;
  width: 108px; height: 108px; border-radius:50%;
  background: var(--brass); color: var(--ink);
  display:grid; place-items:center; text-align:center;
  font-family:var(--serif); font-size:.9rem; line-height:1.1; font-weight:600;
  box-shadow: 0 16px 30px -12px rgba(176,133,68,.8);
  transform: rotate(-8deg);
}

/* ============================================================
   USP STRIP
   ============================================================ */
.usps { background: var(--cream); border-block: 1px solid var(--line); }
.usps .grid { display:grid; grid-template-columns: repeat(3,1fr); }
.usp { display:flex; gap: 16px; padding: 34px 30px; align-items:flex-start; }
.usp + .usp { border-left: 1px solid var(--line); }
.usp .ic { width:40px;height:40px;flex:0 0 40px; color: var(--wine); }
.usp h4 { font-size: 1.15rem; margin-bottom: 4px; }
.usp p { font-size: .9rem; color: var(--ink-soft); }

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { padding: 92px 0; }
.sec-head { display:flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 46px; }
.sec-head.center { flex-direction: column; align-items: center; text-align: center; }
.sec-head h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--ink); }
.sec-head h2 em { font-style: italic; color: var(--wine); }
.sec-head p { color: var(--ink-soft); max-width: 440px; margin-top: 10px; }

/* ---- product cards ---- */
.products { display:grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.card {
  background: var(--cream); border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden; position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -28px rgba(32,22,19,.5); }
.card .tag { position:absolute; top:14px; left:14px; z-index:2; background: var(--wine); color: var(--cream); font-size:.64rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; padding:5px 11px; border-radius:40px; }
.card .fav { position:absolute; top:12px; right:12px; z-index:2; width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.85); display:grid;place-items:center; color:var(--wine); border:1px solid var(--line); transition:.25s; }
.card .fav:hover { background: var(--wine); color:#fff; }
.card .ph {
  height: 300px; display:grid; place-items:center; padding: 26px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.9), transparent 62%),
    repeating-linear-gradient(135deg, var(--parchment-2) 0 2px, transparent 2px 9px);
}
.card .ph img { height: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 20px 24px rgba(32,22,19,.28)); transition: transform .5s var(--ease); }
.card:hover .ph img { transform: translateY(-6px) scale(1.03); }
.card .body { padding: 20px 22px 24px; border-top: 1px solid var(--line); }
.card .maker { font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color: var(--brass); font-weight:600; }
.card h3 { font-size: 1.22rem; margin: 6px 0 12px; color: var(--ink); }
.card h3 a:hover { color: var(--wine); }
.card .meta { display:flex; gap: 8px; flex-wrap:wrap; margin-bottom: 16px; }
.card .chip { font-size:.68rem; letter-spacing:.05em; text-transform:uppercase; color: var(--ink-soft); border:1px solid var(--line); border-radius:40px; padding:4px 10px; background: var(--parchment); }
.card .foot { display:flex; align-items:center; justify-content:space-between; }
.card .price b { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.card .price small { display:block; font-size:.66rem; color: var(--ink-soft); }
.card .add { width:46px;height:46px;border-radius:50%;background:var(--wine);color:var(--cream);border:none;cursor:pointer;display:grid;place-items:center;transition:.3s var(--ease); }
.card .add:hover { background: var(--wine-deep); transform: scale(1.08); }

/* ============================================================
   WINEMAKERS (dark editorial band)
   ============================================================ */
.makers { background: var(--wine-deep); color: var(--cream); position: relative; overflow:hidden; }
.makers::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(700px 400px at 85% 15%, rgba(176,133,68,.22), transparent 60%);
}
.makers .wrap { position: relative; }
.makers .sec-head h2, .makers .sec-head h2 em { color: var(--cream); }
.makers .sec-head h2 em { color: var(--brass-light); }
.makers .sec-head p { color: rgba(251,247,238,.7); }
.makers .eyebrow { color: var(--brass-light); }
.makers .eyebrow::before, .makers .eyebrow.center::after { background: var(--brass-light); }
.maker-grid { display:grid; grid-template-columns: repeat(6,1fr); gap: 14px; margin-top: 10px; }
.maker-cell {
  aspect-ratio: 1; display:grid; place-items:center; text-align:center;
  border: 1px solid rgba(251,247,238,.16); border-radius: 8px;
  font-family: var(--serif); font-size: 1.02rem; padding: 14px;
  transition: .35s var(--ease); background: rgba(255,255,255,.02);
}
.maker-cell:hover { background: rgba(176,133,68,.16); border-color: var(--brass-light); transform: translateY(-4px); }
.maker-cell small { display:block; font-family: var(--sans); font-size:.64rem; letter-spacing:.14em; text-transform:uppercase; color: var(--brass-light); margin-top:6px; }

/* ============================================================
   TASTING PACKAGES
   ============================================================ */
.packs { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.pack {
  border: 1px solid var(--line); border-radius: 10px; overflow:hidden; background: var(--cream);
  display:flex; flex-direction: column; transition: .4s var(--ease);
}
.pack:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(32,22,19,.5); border-color: var(--brass); }
.pack .top { position:relative; height: 240px; overflow:hidden; }
.pack .top img { width:100%; height:100%; object-fit: cover; }
.pack .top .count { position:absolute; bottom:14px; left:14px; background: var(--cream); color: var(--ink); font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:6px 12px; border-radius:40px; }
.pack .in { padding: 24px; display:flex; flex-direction:column; flex:1; }
.pack h3 { font-size:1.4rem; margin-bottom:8px; }
.pack p { font-size:.9rem; color:var(--ink-soft); margin-bottom: 18px; flex:1; }
.pack .pfoot { display:flex; align-items:center; justify-content: space-between; border-top:1px solid var(--line); padding-top:16px; }
.pack .pfoot b { font-family:var(--serif); font-size:1.5rem; color: var(--wine); }

/* ============================================================
   VISIT / SHOP
   ============================================================ */
.visit { background: var(--cream); }
.visit .grid { display:grid; grid-template-columns: 1fr 1fr; gap: 0; border:1px solid var(--line); border-radius: 12px; overflow:hidden; }
.visit .photo { min-height: 460px; background-size: cover; background-position:center; }
.visit .info { padding: 54px; }
.visit .info h2 { font-size: clamp(2rem,3.5vw,2.8rem); margin: 18px 0 20px; }
.visit .info h2 em { font-style:italic; color: var(--wine); }
.visit .hours { margin: 26px 0; }
.visit .hours .row { display:flex; justify-content:space-between; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size:.95rem; }
.visit .hours .row b { font-weight:600; }
.visit .addr { display:flex; gap: 12px; align-items:flex-start; color: var(--ink-soft); font-size:.95rem; margin-bottom: 26px; }
.visit .addr svg { color: var(--wine); flex:0 0 20px; margin-top:3px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.news { background: var(--wine); color: var(--cream); text-align:center; }
.news h2 { font-size: clamp(2rem,4vw,3rem); color: var(--cream); }
.news h2 em { font-style:italic; color: var(--brass-light); }
.news p { color: rgba(251,247,238,.8); max-width: 460px; margin: 14px auto 30px; }
.news form { display:flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.news input { flex:1; padding: 15px 20px; border:none; border-radius: var(--radius); font-family: var(--sans); font-size:.95rem; }
.news input:focus { outline: 2px solid var(--brass-light); }
.news small { display:block; margin-top: 16px; font-size:.74rem; color: rgba(251,247,238,.6); }

/* ============================================================
   FOOTER
   ============================================================ */
footer.ft { background: var(--ink); color: #cbb9ad; padding: 72px 0 32px; }
footer.ft .cols { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
footer.ft .brand .name b { color: #fff; }
footer.ft h5 { font-family: var(--sans); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 18px; }
footer.ft ul { list-style:none; }
footer.ft li { margin-bottom: 10px; font-size: .9rem; }
footer.ft a:hover { color: #fff; }
footer.ft .about { font-size:.9rem; max-width: 300px; margin: 18px 0 22px; color:#a99a90; }
footer.ft .socials { display:flex; gap: 12px; }
footer.ft .socials a { width:38px;height:38px;border:1px solid rgba(255,255,255,.16);border-radius:50%;display:grid;place-items:center;transition:.3s; }
footer.ft .socials a:hover { background: var(--wine); border-color: var(--wine); color:#fff; }
footer.ft .bottom { display:flex; justify-content: space-between; align-items:center; margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); font-size:.8rem; flex-wrap:wrap; gap:14px; }
footer.ft .nix { background:#fff; color:var(--ink); font-weight:800; padding:4px 10px; border-radius:4px; font-size:.8rem; }

/* ============================================================
   BREADCRUMB + PRODUCT PAGE
   ============================================================ */
.crumb { background: var(--cream); border-bottom: 1px solid var(--line); font-size:.82rem; }
.crumb .wrap { display:flex; gap:10px; align-items:center; padding-block: 16px; color: var(--ink-soft); }
.crumb a:hover { color: var(--wine); }
.crumb .sep { color: var(--line); }

.pdp { padding: 60px 0 40px; }
.pdp .grid { display:grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items:start; }
.pdp .gallery { position: sticky; top: 110px; }
.pdp .stage {
  position: relative; border:1px solid var(--line); border-radius: 14px; overflow:hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.95), transparent 60%),
    repeating-linear-gradient(135deg, var(--parchment-2) 0 2px, transparent 2px 10px),
    var(--cream);
  padding: 40px; display:grid; place-items:center; min-height: 520px;
}
.pdp .stage::after {
  content:""; position:absolute; left:0; right:0; bottom:0; height:40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='22' viewBox='0 0 48 22'%3E%3Cg fill='%236b1220'%3E%3Cpath d='M24 1l3 3-3 3-3-3z'/%3E%3Cpath d='M12 8l3 3-3 3-3-3zM36 8l3 3-3 3-3-3z'/%3E%3Cpath d='M24 15l3 3-3 3-3-3z'/%3E%3C/g%3E%3Cg fill='%23b08544'%3E%3Cpath d='M24 8l2 2-2 2-2-2z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x; background-position: center bottom 8px; opacity:.5;
}
.pdp .stage img { max-height: 440px; width:auto; filter: drop-shadow(0 30px 40px rgba(32,22,19,.3)); }
.pdp .stage .badge-award { position:absolute; top:20px; left:20px; background: var(--brass); color:var(--ink); border-radius:50%; width:92px;height:92px; display:grid;place-items:center; text-align:center; font-family:var(--serif); font-size:.82rem; line-height:1.1; font-weight:600; transform:rotate(-8deg); }
.pdp .thumbs { display:flex; gap:12px; margin-top:14px; }
.pdp .thumbs .t { width:72px;height:72px;border:1px solid var(--line);border-radius:8px;display:grid;place-items:center;padding:8px;cursor:pointer;background:var(--cream); transition:.25s; }
.pdp .thumbs .t.on, .pdp .thumbs .t:hover { border-color: var(--wine); }
.pdp .thumbs .t img { height:100%; object-fit:contain; }

.pdp .maker-line { font-size:.76rem; letter-spacing:.18em; text-transform:uppercase; color:var(--brass); font-weight:700; }
.pdp h1 { font-size: clamp(2.3rem, 4vw, 3.3rem); margin: 12px 0 14px; color: var(--ink); }
.pdp h1 em { font-style:italic; color: var(--wine); }
.pdp .rating { display:flex; gap:10px; align-items:center; color: var(--brass); margin-bottom: 20px; font-size:.9rem; }
.pdp .rating .muted { color: var(--ink-soft); }
.pdp .tasting-lead { font-size:1.08rem; color: var(--ink-soft); margin-bottom: 24px; }
.pdp .attrs { display:grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 24px 0; }
.pdp .attr { display:flex; gap:12px; align-items:center; border:1px solid var(--line); border-radius:8px; padding:12px 14px; background:var(--cream); }
.pdp .attr svg { color: var(--wine); flex:0 0 22px; }
.pdp .attr b { font-size:.9rem; display:block; }
.pdp .attr span { font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-soft); }

.pdp .buybox { border:1px solid var(--line); border-radius: 12px; padding: 24px; background: var(--cream); margin: 26px 0; }
.pdp .buybox .price-row { display:flex; align-items:baseline; gap:12px; margin-bottom: 6px; }
.pdp .buybox .price-row b { font-family:var(--serif); font-size: 2.4rem; color: var(--ink); }
.pdp .buybox .price-row .btw { font-size:.78rem; color:var(--ink-soft); }
.pdp .buybox .stock { font-size:.82rem; color:#3f7d4f; font-weight:600; display:flex; align-items:center; gap:7px; margin-bottom:18px; }
.pdp .buybox .stock::before { content:""; width:8px;height:8px;border-radius:50%; background:#3f7d4f; }
.pdp .buyrow { display:flex; gap:12px; }
.qty { display:flex; align-items:center; border:1px solid var(--ink); border-radius: var(--radius); overflow:hidden; }
.qty button { width:46px;height:52px;background:none;border:none;font-size:1.2rem;cursor:pointer;color:var(--ink); }
.qty input { width:44px; text-align:center; border:none; font-family:var(--sans); font-size:1rem; }
.pdp .buybox .btn-wine { flex:1; justify-content:center; }
.pdp .subbtns { display:flex; gap:20px; margin-top:16px; font-size:.8rem; }
.pdp .subbtns a { display:flex; gap:7px; align-items:center; color: var(--ink-soft); letter-spacing:.05em; text-transform:uppercase; font-weight:600; }
.pdp .subbtns a:hover { color: var(--wine); }

/* tabs */
.pdp-tabs { margin-top: 20px; }
.tabbar { display:flex; gap: 6px; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.tabbar button { font-family:var(--serif); font-size:1.15rem; background:none; border:none; padding: 12px 20px; cursor:pointer; color: var(--ink-soft); border-bottom:2px solid transparent; margin-bottom:-1px; transition:.25s; }
.tabbar button.on { color: var(--wine); border-color: var(--wine); }
.tabpane { display:none; max-width: 760px; }
.tabpane.on { display:block; animation: fade .4s var(--ease); }
.tabpane h4 { font-size:1.2rem; margin: 20px 0 8px; color: var(--wine); }
.tabpane p { color: var(--ink-soft); margin-bottom: 14px; }
.pairings { display:flex; gap:10px; flex-wrap:wrap; margin-top: 8px; }
.pairings .p { display:flex; gap:8px; align-items:center; background: var(--parchment); border:1px solid var(--line); border-radius:40px; padding: 8px 16px; font-size:.86rem; }
.spec-table { width:100%; border-collapse:collapse; }
.spec-table td { padding: 13px 4px; border-bottom:1px solid var(--line); font-size:.92rem; }
.spec-table td:first-child { color: var(--ink-soft); width:44%; }
.spec-table td:last-child { font-weight:600; }

@keyframes fade { from { opacity:0; transform: translateY(8px);} to {opacity:1; transform:none;} }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity:0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity:1; transform:none; }
.reveal.d1{transition-delay:.08s} .reveal.d2{transition-delay:.16s} .reveal.d3{transition-delay:.24s} .reveal.d4{transition-delay:.32s}
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1 !important; transform:none !important; transition:none !important; } html { scroll-behavior:auto; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .menu, .nav-actions .hide-m { display:none; }
  .burger { display:flex; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { height: 420px; order:-1; }
  .products, .maker-grid { grid-template-columns: repeat(2,1fr); }
  .packs { grid-template-columns: 1fr; }
  .usps .grid { grid-template-columns: 1fr; }
  .usp + .usp { border-left:none; border-top:1px solid var(--line); }
  .visit .grid { grid-template-columns: 1fr; }
  .visit .photo { min-height: 300px; }
  .pdp .grid { grid-template-columns: 1fr; }
  .pdp .gallery { position: static; }
  footer.ft .cols { grid-template-columns: 1fr 1fr; }
}
.hide-s { display: inline; }
@media (max-width: 560px) {
  .hide-s { display: none !important; }
  .topbar .wrap { justify-content: space-between; }
  .topbar .tb-left { gap: 0; font-size: .72rem; }
  .wrap { padding: 0 18px; }
  section { padding: 64px 0; }
  .products, .maker-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-wrap:wrap; gap:20px; }
  .news form { flex-direction: column; }
  .sec-head { flex-direction: column; align-items:flex-start; }
  footer.ft .cols { grid-template-columns: 1fr; }
  .pdp .attrs { grid-template-columns: 1fr; }
}

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; background: var(--parchment); transform: translateX(100%); transition: transform .4s var(--ease); padding: 30px; display:flex; flex-direction:column; }
.drawer.open { transform: none; }
.drawer .x { align-self:flex-end; background:none; border:none; font-size:2rem; cursor:pointer; color:var(--ink); }
.drawer a { font-family: var(--serif); font-size: 1.6rem; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
