/* =============================================
   HI BAKERZ v2 — WHITE + BLACK EDITORIAL
   ============================================= */

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

:root {
  --white:      #FFFFFF;
  --off-white:  #F7F5F2;
  --light-grey: #EFEFEF;
  --border:     #E0DDD9;
  --black:      #111111;
  --dark:       #1C1C1C;
  --mid:        #444444;
  --muted:      #888888;
  --gold:       #B8882A;
  --gold-bg:    #F5EDD8;
  --green-wa:   #25D366;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Manrope', system-ui, sans-serif;
  --max:        1360px;
  --pad:        80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ─── BUTTONS ─────────────────────────────── */

.btn-black {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  transition: background 0.2s;
}
.btn-black:hover { background: var(--dark); }

.btn-outline-blk {
  display: inline-block;
  border: 1.5px solid var(--black);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 3px;
  transition: all 0.2s;
}
.btn-outline-blk:hover { background: var(--black); color: var(--white); }

.btn-wht {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 3px;
  transition: opacity 0.2s;
}
.btn-wht:hover { opacity: 0.88; }

.btn-wht-outline {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 3px;
  transition: all 0.2s;
}
.btn-wht-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-wht-lg {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: 3px;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.btn-wht-lg:hover { opacity: 0.88; }

.center-btn { display: flex; justify-content: center; }

/* ─── SECTION LABELS ─────────────────────── */

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label-wht {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.section-h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-h2 em { font-style: italic; color: var(--gold); }

.section-h2-wht {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-h2-wht em { font-style: italic; color: #E8C07A; }

/* ─── NAVBAR ──────────────────────────────── */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-fallback {
  display: none;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 900;
  color: var(--black);
}
.nav-logo-fallback span { color: var(--gold); }

.ft-logo-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1); /* makes logo white on dark footer */
}
.ft-logo-fallback {
  display: none;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}
.ft-logo-fallback span { color: #E8C07A; }



.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }

.nav-actions { display: flex; gap: 10px; align-items: center; }

.btn-nav-wa {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600;
  color: var(--mid);
  border: 1.5px solid var(--border);
  padding: 8px 16px;
  border-radius: 3px;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-nav-wa:hover { border-color: var(--green-wa); color: var(--green-wa); }

.btn-nav-grab {
  font-size: 13px; font-weight: 700;
  background: var(--black); color: var(--white);
  padding: 9px 20px; border-radius: 3px;
  white-space: nowrap;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.btn-nav-grab:hover { background: var(--dark); }

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--black); transition: all 0.3s;
}

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 24px 24px;
}
.mobile-menu.open { display: flex; }
.mob-link {
  font-size: 15px; font-weight: 500;
  color: var(--mid); padding: 11px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mob-link:hover { color: var(--black); }
.mob-grab { color: var(--gold); font-weight: 700; border: none; margin-top: 8px; }

/* ─── HERO ────────────────────────────────── */

.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px var(--pad) 80px 80px;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hero-tag::before {
  content: ''; display: block;
  width: 32px; height: 1.5px; background: var(--gold);
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 16px; font-weight: 300;
  color: var(--mid); line-height: 1.75;
  max-width: 400px; margin-bottom: 40px;
}

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-trust {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
}
.trust-block {
  padding: 14px 22px; text-align: center;
  border-right: 1px solid var(--border);
}
.trust-block:last-child { border-right: none; }
.trust-block strong {
  display: block; font-size: 15px;
  font-weight: 700; color: var(--black);
}
.trust-block span {
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.04em; margin-top: 2px; display: block;
}
.trust-sep { display: none; }

/* Hero right */
.hero-right {
  position: relative; overflow: hidden;
  background: var(--light-grey);
  min-height: 600px;
}

.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-img-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.ph-inner {
  text-align: center;
  color: var(--muted);
  font-size: 13px; line-height: 2;
}
.ph-icon { font-size: 32px; margin-bottom: 8px; }
.ph-inner strong { display: block; color: var(--black); font-size: 14px; }
.ph-inner small { font-size: 12px; }

.hero-img-badge {
  position: absolute;
  bottom: 28px; left: 28px;
  background: var(--black);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 6px;
  font-family: var(--font-serif);
  text-align: center;
  line-height: 1.4;
}
.hero-img-badge span { font-size: 16px; color: #FFD700; }
.hero-img-badge small { display: block; font-size: 11px; opacity: 0.6; letter-spacing: 0.06em; margin-top: 2px; }

/* ─── INFO BAR ────────────────────────────── */

.infobar {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}
.infobar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 15px var(--pad);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.ib-item {
  display: flex; align-items: center; gap: 7px;
}
.ib-item svg { opacity: 0.5; flex-shrink: 0; }
.ib-item strong { color: rgba(255,255,255,0.9); }
.ib-dot {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.15);
}
.ib-grab {
  color: #E8C07A; font-weight: 600;
  margin-left: auto; transition: opacity 0.2s;
}
.ib-grab:hover { opacity: 0.8; }

/* ─── ORDER ONLINE ────────────────────────── */

.section-order {
  padding: 96px 0;
  background: var(--white);
}

.section-head-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 36px;
}

.section-note {
  font-size: 15px; font-weight: 300;
  color: var(--mid); line-height: 1.75;
  padding-top: 8px;
}

.grab-notice {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--gold-bg);
  border: 1px solid #DFC98A;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 14px;
  color: #6B4F1A;
  margin-bottom: 48px;
  line-height: 1.6;
}
.grab-notice svg { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }
.grab-notice strong { color: #5A3F10; }

.grab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}

.grab-card {
  background: var(--white);
  display: flex; flex-direction: column;
  transition: background 0.2s;
  text-decoration: none; color: inherit;
}
.grab-card:hover { background: var(--off-white); }

.gc-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--light-grey);
  overflow: hidden;
}
.gc-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.grab-card:hover .gc-img-wrap img { transform: scale(1.04); }
.gc-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--muted); font-size: 11px; line-height: 1.8;
}
.gc-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.grab-card:hover .gc-overlay { opacity: 1; }
.gc-overlay span {
  color: var(--white); font-size: 13px;
  font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 8px 18px; border-radius: 2px;
}

.gc-body {
  padding: 20px 24px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.gc-num {
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--gold); font-weight: 600; margin-bottom: 6px;
}
.gc-name {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 700;
  color: var(--black); margin-bottom: 6px;
}
.gc-desc {
  font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.6; flex: 1;
  margin-bottom: 16px;
}
.gc-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--black);
  background: var(--light-grey);
  padding: 5px 12px; border-radius: 2px;
  align-self: flex-start;
}

/* ─── IN-STORE RANGE ──────────────────────── */

.section-instore {
  background: var(--black);
  padding: 96px 0;
}

.instore-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.instore-note {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* Rack photos strip */
.rack-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 56px;
}
.rack-img {
  position: relative;
  aspect-ratio: 4/3;
  background: #222;
  overflow: hidden;
}
.rack-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.rack-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 11px; line-height: 1.9;
  border: 1px dashed rgba(255,255,255,0.1);
  margin: 12px;
}
.rack-ph small { opacity: 0.6; }

/* Category cloud */
.instore-cats-wrap {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 48px;
  margin-bottom: 48px;
}
.instore-cats-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.instore-cats {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.instore-cats span {
  display: inline-block;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.2s;
}
.instore-cats span:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
}
.instore-cats span:last-child {
  color: #E8C07A;
  border-color: rgba(232,192,122,0.3);
  background: rgba(232,192,122,0.07);
}

/* In-store CTA row */
.instore-cta-row {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 28px 36px;
  flex-wrap: wrap;
}
.instore-cta-text strong {
  display: block; color: var(--white);
  font-size: 16px; margin-bottom: 4px;
}
.instore-cta-text span {
  font-size: 14px; color: rgba(255,255,255,0.5);
  font-weight: 300;
}
.instore-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── ABOUT ───────────────────────────────── */

.section-about {
  padding: 96px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-imgs {
  position: relative;
}
.about-img-big {
  position: relative; overflow: hidden;
  background: var(--light-grey);
  border-radius: 6px;
  height: 520px;
}
.about-img-big img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.about-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  color: var(--muted); font-size: 11px; line-height: 2;
}
.about-ph small { opacity: 0.7; }
.about-img-sm { display: none; }

.about-float-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 4px; text-align: center;
}
.afb-num {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 900; line-height: 1;
}
.afb-stars { color: #FFD700; font-size: 10px; letter-spacing: 2px; margin: 3px 0; }
.afb-label { font-size: 9px; opacity: 0.5; text-transform: uppercase; letter-spacing: 0.1em; }

.about-content { }
.about-p {
  font-size: 15px; font-weight: 300;
  color: var(--mid); line-height: 1.8;
  margin-top: 20px;
}

.about-pillars {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 0;
}
.pillar {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.pillar:first-child { border-top: 1px solid var(--border); }
.pillar-icon { color: var(--gold); font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.pillar strong { display: block; font-size: 14px; font-weight: 600; color: var(--black); }
.pillar span { font-size: 13px; color: var(--muted); font-weight: 300; margin-top: 2px; display: block; }

/* ─── REVIEWS ─────────────────────────────── */

.section-reviews {
  padding: 96px 0;
  background: var(--white);
}

.reviews-top {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 48px;
}
.rs-num {
  font-family: var(--font-serif);
  font-size: 64px; font-weight: 900;
  color: var(--black); line-height: 1;
}
.rs-stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin: 4px 0; }
.rs-label { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.rev-card {
  background: var(--white);
  padding: 36px 32px;
}
.rev-featured {
  grid-column: 1 / -1;
  background: var(--off-white);
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 24px 40px;
  align-items: start;
}
.rev-quote {
  font-family: var(--font-serif);
  font-size: 96px;
  color: var(--gold);
  line-height: 0.8;
  opacity: 0.4;
}

.rev-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.rev-text {
  font-family: var(--font-serif);
  font-size: 15px; font-style: italic;
  color: var(--mid); line-height: 1.75;
  margin-bottom: 20px;
}
.rev-featured .rev-text { font-size: 18px; }
.rev-name { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); }
.rev-name span { color: var(--muted); font-weight: 300; text-transform: none; letter-spacing: 0; }

/* ─── GRAB BANNER ─────────────────────────── */

.grab-banner {
  background: var(--black);
  padding: 80px 0;
}
.gb-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
  flex-wrap: wrap;
}
.gb-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900; color: var(--white);
  line-height: 1.1; margin-top: 10px;
}
.gb-title em { font-style: italic; color: #E8C07A; }
.gb-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5); margin-top: 10px; }

/* ─── VISIT ───────────────────────────────── */

.section-visit {
  padding: 96px 0;
  background: var(--off-white);
}
.section-visit .section-h2 { margin-bottom: 56px; }

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.vc-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--black);
  margin-bottom: 24px;
}

.hours { list-style: none; }
.hours li {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.hours li span:first-child { color: var(--mid); font-weight: 400; }
.hours li span:last-child { color: var(--black); font-weight: 600; }
.hours li.closed { opacity: 0.35; }

.vc-items { display: flex; flex-direction: column; gap: 18px; }
.vc-item {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14px; color: var(--mid);
  line-height: 1.65; font-weight: 300;
}
.vc-item svg { flex-shrink: 0; opacity: 0.5; margin-top: 2px; color: var(--black); }
.vc-item a { color: var(--black); font-weight: 600; }
.vc-item a:hover { color: var(--gold); }
.map-link {
  display: block; margin-top: 4px;
  font-size: 12px !important; color: var(--gold) !important;
  letter-spacing: 0.04em;
}
.map-wrap { margin-top: 12px; }

.socials { display: flex; flex-direction: column; gap: 4px; }
.soc-link {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.2s;
}
.soc-link:hover { opacity: 0.7; }
.soc-ico {
  width: 40px; height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--black); flex-shrink: 0; font-size: 17px;
}
.grab-ico { font-size: 18px; background: #EEF9EE; border-color: #C8EAC8; }
.soc-link strong { display: block; font-size: 14px; color: var(--black); }
.soc-link span { font-size: 12px; color: var(--muted); font-weight: 300; }

/* ─── FOOTER ──────────────────────────────── */

.footer { background: var(--black); }
.footer-top {
  max-width: var(--max); margin: 0 auto;
  padding: 36px var(--pad);
  display: flex; align-items: center; gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ft-logo {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 900;
  color: var(--white); white-space: nowrap;
}
.ft-logo span { color: #E8C07A; }
.ft-nav {
  display: flex; gap: 24px; margin: 0 auto; flex-wrap: wrap;
}
.ft-nav a {
  font-size: 13px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em; transition: color 0.2s;
}
.ft-nav a:hover { color: var(--white); }
.ft-soc { display: flex; gap: 16px; }
.ft-soc a {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35); transition: color 0.2s;
}
.ft-soc a:hover { color: #E8C07A; }

.footer-bot {
  max-width: var(--max); margin: 0 auto;
  padding: 18px var(--pad);
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.2);
  flex-wrap: wrap; gap: 8px;
}

/* ─── FLOATING WHATSAPP ───────────────────── */

.wa-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: var(--green-wa);
  color: var(--white);
  padding: 12px 20px 12px 16px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

/* ─── RESPONSIVE ──────────────────────────── */

@media (max-width: 1100px) {
  :root { --pad: 40px; }
  .grab-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-featured { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .rev-quote { display: none; }
}

@media (max-width: 900px) {
  :root { --pad: 24px; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 380px; min-height: unset; order: -1; }
  .hero-left { padding: 56px 24px; order: 1; }
  .section-head-row { grid-template-columns: 1fr; gap: 16px; }
  .instore-header { grid-template-columns: 1fr; gap: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .gb-inner { flex-direction: column; text-align: center; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .rack-photos { grid-template-columns: 1fr 1fr; }
  .rack-photos .rack-img:last-child { display: none; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .ft-nav { display: none; }
  .wa-btn span { display: none; }
  .wa-btn { padding: 14px; border-radius: 50%; }
}

@media (max-width: 640px) {
  .grab-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; border: none; gap: 0; width: 100%; }
  .trust-block { border: 1px solid var(--border); border-radius: 6px; margin-bottom: 8px; }
  .rack-photos { grid-template-columns: 1fr; }
  .rack-photos .rack-img:last-child { display: block; }
  .infobar-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ib-dot { display: none; }
  .ib-grab { margin-left: 0; }
  .about-imgs { grid-template-rows: 240px 180px; }
  .instore-cta-row { flex-direction: column; align-items: flex-start; }
}
