/* ═══════════════════════════════════════════════
   VEE'S BITE – PASTRIES PARADISE
   Main Stylesheet | Cloudflare Pages
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Nunito:wght@400;500;600;700;800&display=swap');

/* ── TOKENS ─────────────────────────────────── */
:root {
  --cream:       #FDF8EF;
  --cream-2:     #F5ECD8;
  --cream-3:     #EDD9B8;
  --gold:        #B8860B;
  --gold-soft:   #D4A843;
  --gold-light:  #FFF8E7;
  --gold-border: #E8C97A;
  --brown:       #2C1400;
  --brown-2:     #5C3010;
  --brown-3:     #9B6835;
  --brown-4:     #C4A882;
  --white:       #FFFFFF;
  --red:         #C0392B;
  --green-wa:    #25D366;
  --shadow-sm:   0 1px 6px rgba(44,20,0,.08);
  --shadow:      0 2px 14px rgba(44,20,0,.11);
  --shadow-lg:   0 6px 32px rgba(44,20,0,.16);
  --radius:      10px;
  --radius-lg:   16px;
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Nunito', system-ui, sans-serif;
  --max-w:       1240px;
  --transition:  0.18s ease;
}

/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--cream); color: var(--brown); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
button, a { font-family: var(--font-body); }
a { text-decoration: none; }
ul { list-style: none; }

/* ── UTILS ──────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ═══════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════ */
.ann-bar {
  background: var(--brown);
  padding: 9px 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.ann-bar__item {
  color: var(--gold-soft);
  font-size: 11.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.ann-bar__item strong { color: #fff; }
.ann-bar__sep { color: var(--gold-border); opacity: .5; }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--cream-3);
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 14px; }
.logo__img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-border);
  flex-shrink: 0;
}
.logo__img img { width: 100%; height: 100%; object-fit: cover; }
.logo__text { display: flex; flex-direction: column; }
.logo__name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}
.logo__sub {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* Search */
.search { position: relative; }
.search__input {
  width: 100%;
  height: 42px;
  padding: 0 48px 0 18px;
  border: 1.5px solid var(--cream-3);
  border-radius: 21px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brown);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search__input:focus {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(184,134,11,.12);
}
.search__input::placeholder { color: var(--brown-4); }
.search__btn {
  position: absolute;
  right: 0; top: 0;
  width: 42px; height: 42px;
  background: var(--gold);
  border: none;
  border-radius: 0 21px 21px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.search__btn:hover { background: var(--brown-2); }
.search__btn svg { width: 17px; height: 17px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
  transition: background var(--transition);
  min-width: 46px;
}
.icon-btn:hover { background: var(--cream-2); }
.icon-btn svg { width: 22px; height: 22px; stroke: var(--brown-2); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn__label { font-size: 10px; font-weight: 700; color: var(--brown-3); }
.cart-count {
  position: absolute;
  top: 3px; right: 5px;
  background: var(--gold);
  color: var(--brown);
  font-size: 10px;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.wa-header-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--brown);
  color: var(--gold-soft);
  border: none;
  padding: 10px 18px;
  border-radius: 21px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.wa-header-btn:hover { background: var(--brown-2); }
.wa-header-btn svg { width: 16px; height: 16px; fill: var(--gold-soft); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   CATEGORY NAV
═══════════════════════════════════════════ */
.cat-nav {
  background: var(--brown-2);
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav__list {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}
.cat-nav__item a {
  display: block;
  padding: 13px 18px;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
}
.cat-nav__item a:hover,
.cat-nav__item.is-active a {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: linear-gradient(150deg, var(--cream-2) 0%, var(--gold-light) 55%, var(--cream-3) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(184,134,11,.15) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: center;
  min-height: 420px;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.hero__content { padding: 56px 0; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero__title em { color: var(--gold); font-style: italic; }
.hero__tagline {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--brown-3);
  font-style: italic;
  margin-bottom: 14px;
}
.hero__sub {
  font-size: 14px;
  color: var(--brown-2);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 28px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 420px;
}
.hero__img-box {
  width: 380px;
  height: 350px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold-border);
}
.hero__img-box img { width: 100%; height: 100%; object-fit: contain; background: transparent; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 24px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn--gold { background: var(--gold); color: white; padding: 13px 28px; font-size: 14px; }
.btn--gold:hover { background: var(--brown-2); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--brown); border: 2px solid var(--brown-3); padding: 12px 24px; font-size: 14px; }
.btn--outline:hover { background: var(--brown); color: white; }
.btn--brown { background: var(--brown); color: var(--gold-soft); padding: 13px 28px; font-size: 14px; }
.btn--brown:hover { background: var(--gold); }
.btn--wa { background: var(--green-wa); color: white; padding: 13px 24px; font-size: 14px; justify-content: center; }
.btn--full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   ORDER INFO STRIP
═══════════════════════════════════════════ */
.order-info { background: var(--brown); padding: 20px 24px; }
.order-info__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.oi-card {
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.oi-card__icon { font-size: 26px; }
.oi-card__title { font-size: 10px; font-weight: 800; color: var(--gold-soft); text-transform: uppercase; letter-spacing: .6px; }
.oi-card__val { font-size: 12px; color: rgba(255,255,255,.7); line-height: 1.5; }
.oi-card__val strong { color: var(--gold-soft); }

/* ═══════════════════════════════════════════
   GIFT BANNER
═══════════════════════════════════════════ */
.gift-banner {
  background: linear-gradient(90deg, var(--gold-light), #fffaed, var(--gold-light));
  border-top: 1.5px solid var(--gold-border);
  border-bottom: 1.5px solid var(--gold-border);
  padding: 13px 24px;
}
.gift-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.gift-banner__text { font-size: 13px; font-weight: 700; color: var(--brown); }
.gift-banner__text em { color: var(--gold); font-style: normal; }
.gift-pill {
  background: var(--gold);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
}

/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
.section { padding: 52px 24px; max-width: var(--max-w); margin: 0 auto; }
.section--bg { background: var(--cream-2); }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.section__title { font-family: var(--font-head); font-size: 30px; font-weight: 700; color: var(--brown); line-height: 1.1; }
.section__title em { color: var(--gold); font-style: italic; }
.section__sub { font-size: 13px; color: var(--brown-3); margin-top: 5px; }
.section__divider { border: none; border-top: 1.5px solid var(--cream-3); margin: 0 24px; }
.section__sub-head { font-family: var(--font-head); font-size: 22px; color: var(--brown); margin-bottom: 16px; }

/* ═══════════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1.5px solid transparent;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--gold-border);
}
.product-card__ref {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--brown);
  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: .4px;
  z-index: 2;
}
.product-card__badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 4px;
  z-index: 2;
}
.product-card__badge--fresh { background: var(--gold); color: white; }
.product-card__badge--new   { background: var(--brown-2); color: var(--gold-soft); }
.wishlist-btn {
  position: absolute;
  top: 34px; right: 10px;
  width: 28px; height: 28px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
  z-index: 2;
  transition: transform var(--transition);
}
.wishlist-btn:hover { transform: scale(1.15); }
.wishlist-btn svg { width: 13px; height: 13px; stroke: #ccc; fill: none; stroke-width: 2; transition: stroke var(--transition), fill var(--transition); }
.wishlist-btn.is-wished svg { stroke: var(--red); fill: var(--red); }
.product-card__img {
  height: 280px;
  background: #ffffff;
  overflow: hidden;
  border-bottom: 1.5px solid var(--cream-3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.product-card__img img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s ease; }
.product-card:hover .product-card__img img { transform: scale(1.02); }
.product-card__img .fallback { font-size: 52px; opacity: .3; }
.product-card__body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__cat { font-size: 10px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 4px; }
.product-card__name { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--brown); line-height: 1.3; margin-bottom: 5px; }
.product-card__desc { font-size: 11.5px; color: var(--brown-3); line-height: 1.5; margin-bottom: 8px; flex: 1; }
.product-card__allergen { font-size: 10px; color: var(--brown-3); background: var(--cream-2); padding: 3px 8px; border-radius: 10px; display: inline-block; margin-bottom: 10px; line-height: 1.5; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.price { display: flex; flex-direction: column; }
.price__main { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--brown); line-height: 1; }
.price__ref { font-size: 10px; color: var(--brown-4); margin-top: 1px; }
.qty-control { display: flex; align-items: center; gap: 6px; }
.qty-control__btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-3);
  background: var(--cream-2);
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  transition: background var(--transition);
  font-family: var(--font-body);
}
.qty-control__btn:hover { background: var(--cream-3); }
.qty-control__val { font-size: 13px; font-weight: 800; min-width: 20px; text-align: center; color: var(--brown); }
.add-to-cart {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brown);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.add-to-cart:hover { background: var(--gold); transform: scale(1.08); }
.add-to-cart svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* ═══════════════════════════════════════════
   BAG SIZE NOTE
═══════════════════════════════════════════ */
.bag-note {
  display: inline-block;
  font-size: 12.5px;
  color: var(--brown-3);
  background: var(--cream-2);
  border: 1.5px solid var(--cream-3);
  border-radius: var(--radius);
  padding: 10px 18px;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════
   ALLERGEN SECTION
═══════════════════════════════════════════ */
.allergen-section { background: var(--brown); padding: 52px 24px; }
.allergen-section__inner { max-width: var(--max-w); margin: 0 auto; }
.allergen-section__title { font-family: var(--font-head); font-size: 30px; color: var(--gold-soft); margin-bottom: 6px; }
.allergen-section__sub { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 28px; }
.allergen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.allergen-card {
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
}
.allergen-card h4 { font-family: var(--font-head); font-size: 17px; color: var(--gold-soft); margin-bottom: 6px; }
.allergen-card p { font-size: 12.5px; color: rgba(255,255,255,.7); line-height: 1.6; }
.shelf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; margin-top: 24px; }
.shelf-card { background: rgba(255,255,255,.07); border-radius: var(--radius); padding: 16px 20px; }
.shelf-card h4 { font-size: 13px; font-weight: 700; color: var(--gold-soft); margin-bottom: 6px; }
.shelf-card p { font-size: 12px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ═══════════════════════════════════════════
   GIFT BASKET BUILDER
═══════════════════════════════════════════ */
.basket-section {
  background: linear-gradient(135deg, var(--gold-light), var(--cream));
  border-top: 2px solid var(--gold-border);
  padding: 56px 24px;
}
.basket-section__inner { max-width: var(--max-w); margin: 0 auto; }
.basket-section__header { text-align: center; margin-bottom: 36px; }
.basket-section__header h2 { font-family: var(--font-head); font-size: 36px; color: var(--brown); margin-bottom: 10px; }
.basket-section__header h2 em { color: var(--gold); font-style: italic; }
.basket-section__header p { font-size: 14px; color: var(--brown-3); max-width: 500px; margin: 0 auto; line-height: 1.8; }
.basket-previews { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 600px; margin: 0 auto 36px; }
.basket-preview { border-radius: var(--radius-lg); overflow: hidden; height: 220px; box-shadow: var(--shadow-lg); border: 2px solid var(--gold-border); }
.basket-preview img { width: 100%; height: 100%; object-fit: contain; background: var(--gold-light); }
.basket-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  max-width: 640px;
  margin: 0 auto;
}
.basket-form h3 { font-family: var(--font-head); font-size: 24px; color: var(--brown); margin-bottom: 22px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 11px; font-weight: 800; color: var(--brown-2); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 6px; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--cream-3);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brown);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--gold-soft); }
.form-row textarea { height: 90px; resize: vertical; }
.items-checklist { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px; max-height: 200px; overflow-y: auto; padding: 4px 2px; }
.item-check { display: flex; align-items: center; gap: 8px; padding: 7px 10px; background: var(--cream); border-radius: var(--radius); cursor: pointer; border: 1.5px solid var(--cream-3); transition: border-color var(--transition); }
.item-check:hover { border-color: var(--gold-soft); }
.item-check input { width: 14px; height: 14px; accent-color: var(--gold); cursor: pointer; }
.item-check span { font-size: 12px; font-weight: 600; color: var(--brown-2); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer { background: var(--brown); color: rgba(255,255,255,.65); padding: 56px 24px 24px; }
.site-footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo__img { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold-border); }
.footer-logo__img img { width: 100%; height: 100%; object-fit: cover; }
.footer-logo__name { font-family: var(--font-head); font-size: 20px; color: var(--gold-soft); }
.footer-logo__sub { font-size: 9px; color: rgba(255,255,255,.35); letter-spacing: .8px; text-transform: uppercase; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.8; }
.footer-col h4 { font-size: 11px; font-weight: 800; color: var(--gold-soft); text-transform: uppercase; letter-spacing: .7px; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-soft); }
.footer-col ul li span { font-size: 13px; color: rgba(255,255,255,.5); }
.site-footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.payment-icons { display: flex; gap: 8px; }
.payment-icon { background: rgba(255,255,255,.08); border-radius: 4px; padding: 4px 10px; font-size: 10px; font-weight: 700; color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════════
   CART DRAWER
═══════════════════════════════════════════ */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.overlay.is-open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 380px;
  background: var(--white);
  z-index: 500;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 28px rgba(44,20,0,.2);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__header {
  background: var(--brown);
  color: var(--gold-soft);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-drawer__title { font-family: var(--font-head); font-size: 22px; }
.cart-drawer__close { background: none; border: none; color: var(--gold-soft); cursor: pointer; font-size: 22px; line-height: 1; padding: 4px; }
.cart-progress { padding: 12px 16px; flex-shrink: 0; }
.progress-label { font-size: 11px; font-weight: 700; color: var(--brown-2); margin-bottom: 6px; }
.progress-bar { background: var(--cream-2); border-radius: 10px; height: 7px; overflow: hidden; }
.progress-bar__fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); border-radius: 10px; transition: width .4s ease; }
.progress-note { font-size: 11px; color: var(--brown-3); margin-top: 5px; }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--brown-3); }
.cart-empty__icon { font-size: 48px; opacity: .25; }
.cart-empty__title { font-weight: 700; font-size: 14px; color: var(--brown-2); }
.cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--cream-2); align-items: center; }
.cart-item__img { width: 56px; height: 56px; border-radius: var(--radius); overflow: hidden; background: var(--cream-2); flex-shrink: 0; }
.cart-item__img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; background: #fff; }
.cart-item__body { flex: 1; min-width: 0; }
.cart-item__name { font-size: 13px; font-weight: 700; color: var(--brown); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
.cart-item__ref { font-size: 10px; color: var(--brown-4); }
.cart-item__controls { display: flex; align-items: center; gap: 8px; margin-top: 7px; }
.ci-qty-btn { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--cream-3); background: var(--cream-2); cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; color: var(--brown); }
.ci-qty-val { font-size: 13px; font-weight: 700; min-width: 18px; text-align: center; }
.ci-remove { background: none; border: none; cursor: pointer; color: var(--brown-4); font-size: 16px; margin-left: auto; }
.gift-unlock {
  background: linear-gradient(135deg, var(--gold-light), #fffaed);
  border: 2px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 14px;
  margin: 12px 0;
  text-align: center;
}
.gift-unlock p { font-size: 13px; font-weight: 700; color: var(--brown); margin-bottom: 12px; }
.gift-options { display: flex; gap: 10px; }
.gift-opt { flex: 1; background: white; border: 2px solid var(--cream-3); border-radius: var(--radius); padding: 10px 8px; cursor: pointer; text-align: center; font-size: 11px; font-weight: 700; color: var(--brown); transition: border-color var(--transition), background var(--transition); }
.gift-opt:hover, .gift-opt.is-selected { border-color: var(--gold); background: var(--gold-light); }
.gift-opt__img { height: 56px; object-fit: contain; margin: 0 auto 6px; display: block; }
.cart-drawer__footer { padding: 16px 20px; border-top: 1.5px solid var(--cream-3); flex-shrink: 0; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.cart-total__label { font-size: 14px; font-weight: 700; color: var(--brown); }
.cart-total__amt { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--brown); }
.cart-min-warn { font-size: 11.5px; color: var(--red); margin-bottom: 10px; text-align: center; font-weight: 600; }

/* ═══════════════════════════════════════════
   TOAST
═══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--brown);
  color: var(--gold-soft);
  padding: 13px 24px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  z-index: 600;
  transition: transform .25s ease, opacity .25s ease;
  white-space: nowrap;
  pointer-events: none;
}
.toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .order-info__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__img { display: none; }
  .hero__title { font-size: 38px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .site-header__inner { grid-template-columns: auto 1fr; }
  .wa-header-btn span { display: none; }
  .hero__title { font-size: 30px; }
  .order-info__grid { grid-template-columns: 1fr 1fr; }
  .cart-drawer { width: 100%; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .basket-previews { grid-template-columns: 1fr; }
}
