/* ============================================================
   SONDRUMS PIZZERIA — main.css
   Brand: tomato red #D32F2F | cream #FFF8DC | basil #4CAF50
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --red:       #D32F2F;
  --red-dark:  #B71C1C;
  --red-light: #EF5350;
  --cream:     #FFF8DC;
  --cream-dark:#F5EFC7;
  --green:     #4CAF50;
  --green-dark:#388E3C;
  --white:     #FFFFFF;
  --black:     #1A1A1A;
  --grey-1:    #F8F8F8;
  --grey-2:    #EEEEEE;
  --grey-3:    #BDBDBD;
  --grey-4:    #757575;
  --grey-5:    #424242;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --max-w:     1440px;
  --nav-h:     72px;
  --font-main: 'Poppins', sans-serif;
  --font-serif:'Playfair Display', serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); border: none; background: none; }
input, textarea, select { font-family: var(--font-main); font-size: 16px; }

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--red); width: 0%; z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Skip Link (Accessibility) ── */
.skip-link {
  position: absolute; top: -50px; left: 16px;
  background: var(--red); color: var(--white);
  padding: 8px 16px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600; z-index: 10000;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--black); color: var(--white);
  padding: clamp(16px, 3vw, 24px) clamp(20px, 5vw, 40px);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 16px; justify-content: space-between; z-index: 9998;
  transform: translateY(100%); transition: transform 0.4s var(--transition);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { font-size: clamp(13px, 1.5vw, 15px); flex: 1 1 300px; line-height: 1.6; }
#cookie-banner a { color: var(--red-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--red); color: var(--white);
  padding: 10px 24px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; transition: background var(--transition);
}
.btn-cookie-accept:hover { background: var(--red-dark); }
.btn-cookie-decline {
  background: transparent; color: var(--grey-3);
  padding: 10px 24px; border-radius: var(--radius-sm);
  font-weight: 500; font-size: 14px; border: 1px solid var(--grey-4);
  transition: all var(--transition);
}
.btn-cookie-decline:hover { border-color: var(--white); color: var(--white); }

/* ── Scroll-to-Top ── */
#scroll-top {
  position: fixed; bottom: clamp(20px, 4vw, 32px); right: clamp(20px, 4vw, 32px);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  font-size: 20px;
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { transform: translateY(-3px); }

/* ── Live Chat Button ── */
#live-chat {
  position: fixed; bottom: clamp(20px, 4vw, 32px);
  left: clamp(20px, 4vw, 32px); z-index: 1000;
  display: flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  border-radius: var(--radius-xl); padding: 14px 20px;
  font-weight: 600; font-size: 14px;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}
#live-chat:hover { background: var(--red-dark); transform: translateY(-2px); }
#live-chat svg { width: 20px; height: 20px; }
.chat-dot {
  width: 10px; height: 10px; background: var(--green);
  border-radius: 50%; animation: pulse 2s infinite;
}

/* ── NAVIGATION ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(211,47,47,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }
#navbar.hide { transform: translateY(-100%); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: clamp(18px, 2vw, 22px); font-weight: 800;
  color: var(--red); white-space: nowrap;
}
.nav-logo span { color: var(--black); }
.nav-logo svg { width: 36px; height: 36px; flex-shrink: 0; }
.nav-links {
  display: flex; align-items: center; gap: clamp(8px, 2vw, 32px);
}
.nav-links a {
  font-size: clamp(13px, 1.2vw, 15px); font-weight: 500;
  color: var(--grey-5); position: relative; padding: 4px 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--red); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.btn-primary {
  background: var(--red); color: var(--white);
  padding: clamp(10px, 1.5vw, 12px) clamp(16px, 2vw, 24px);
  border-radius: var(--radius-sm); font-weight: 700;
  font-size: clamp(13px, 1.2vw, 15px);
  transition: all var(--transition); display: inline-flex;
  align-items: center; gap: 8px;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(211,47,47,0.4);
}
.btn-outline {
  background: transparent; color: var(--red);
  padding: clamp(9px, 1.4vw, 11px) clamp(16px, 2vw, 24px);
  border-radius: var(--radius-sm); font-weight: 700;
  font-size: clamp(13px, 1.2vw, 15px);
  border: 2px solid var(--red);
  transition: all var(--transition); display: inline-flex;
  align-items: center; gap: 8px;
}
.btn-outline:hover {
  background: var(--red); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(211,47,47,0.4);
}
.btn-green {
  background: var(--green); color: var(--white);
  padding: clamp(10px, 1.5vw, 14px) clamp(20px, 2.5vw, 32px);
  border-radius: var(--radius-sm); font-weight: 700;
  font-size: clamp(14px, 1.3vw, 16px);
  transition: all var(--transition); display: inline-flex;
  align-items: center; gap: 8px;
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(76,175,80,0.4);
}
.nav-cart-btn {
  position: relative; padding: 8px; color: var(--grey-5);
  transition: color var(--transition);
}
.nav-cart-btn:hover { color: var(--red); }
.cart-count {
  position: absolute; top: 0; right: 0;
  width: 18px; height: 18px; background: var(--red); color: var(--white);
  border-radius: 50%; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.cart-count.has-items { display: flex; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; width: 44px; height: 44px;
  justify-content: center; align-items: center;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
#mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; overflow-y: auto;
  transform: translateX(100%); transition: transform var(--transition);
  padding: 24px clamp(20px, 5vw, 40px);
}
#mobile-menu.open { transform: translateX(0); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu-links a {
  font-size: 18px; font-weight: 600; color: var(--black);
  padding: 16px 0; border-bottom: 1px solid var(--grey-2);
  display: flex; align-items: center; justify-content: space-between;
  transition: color var(--transition);
}
.mobile-menu-links a:hover { color: var(--red); }
.mobile-menu-cta {
  margin-top: 32px; display: flex; flex-direction: column; gap: 12px;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(211,47,47,0.4) 60%, rgba(26,26,26,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  padding: clamp(40px,8vw,100px) clamp(16px,5vw,48px);
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3); color: var(--white);
  padding: 8px 18px; border-radius: var(--radius-xl);
  font-size: clamp(12px, 1.2vw, 14px); font-weight: 600;
  margin-bottom: 24px; animation: fadeInUp 0.6s ease both;
}
.hero-title {
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 900; line-height: 1.1;
  color: var(--white); max-width: 800px;
  animation: fadeInUp 0.7s 0.1s ease both;
}
.hero-title span { color: var(--red-light); }
.hero-subtitle {
  font-size: clamp(16px, 2vw, 22px); color: rgba(255,255,255,0.85);
  margin-top: 20px; max-width: 560px; line-height: 1.6;
  animation: fadeInUp 0.7s 0.2s ease both;
}
.hero-actions {
  margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px;
  animation: fadeInUp 0.7s 0.3s ease both;
}
.hero-stats {
  margin-top: 56px; display: flex; flex-wrap: wrap; gap: 32px;
  animation: fadeInUp 0.7s 0.4s ease both;
}
.hero-stat-item { color: var(--white); }
.hero-stat-item strong {
  display: block; font-size: clamp(28px, 4vw, 48px);
  font-weight: 900; line-height: 1; color: var(--red-light);
}
.hero-stat-item span { font-size: clamp(12px, 1.3vw, 14px); opacity: 0.8; font-weight: 500; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--black); padding: clamp(16px, 3vw, 24px) 0;
  overflow: hidden;
}
.trust-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: clamp(16px, 4vw, 48px);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); white-space: nowrap;
}
.trust-item svg { color: var(--red-light); width: 24px; height: 24px; flex-shrink: 0; }
.trust-item span { font-size: clamp(13px, 1.3vw, 15px); font-weight: 600; }

/* ── SECTION BASE ── */
.section {
  padding: clamp(60px, 8vw, 120px) 0;
}
.section-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
.section-header { text-align: center; margin-bottom: clamp(36px, 5vw, 64px); }
.section-eyebrow {
  font-size: clamp(11px, 1.2vw, 13px); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--red); margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; flex: 0 0 32px; height: 2px; background: var(--red);
}
.section-title {
  font-size: clamp(28px, 4vw, 52px); font-weight: 800; line-height: 1.2;
  color: var(--black);
}
.section-title span { color: var(--red); }
.section-sub {
  font-size: clamp(15px, 1.5vw, 18px); color: var(--grey-4);
  margin-top: 16px; max-width: 640px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}

/* ── PIZZA CAROUSEL ── */
.carousel-wrap { position: relative; overflow: hidden; }
.pizza-carousel {
  display: flex; gap: clamp(16px, 2.5vw, 28px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 8px;
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
}
.pizza-carousel::-webkit-scrollbar { display: none; }
.pizza-card {
  flex: 0 0 clamp(240px, 30vw, 320px);
  scroll-snap-align: start;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition); cursor: pointer;
  border: 1px solid var(--grey-2);
}
.pizza-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-xl);
  border-color: var(--red);
}
.pizza-card-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden; position: relative;
}
.pizza-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.pizza-card:hover .pizza-card-img img { transform: scale(1.08); }
.pizza-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: var(--radius-xl); text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pizza-card-body { padding: clamp(16px, 2vw, 20px); }
.pizza-card-name {
  font-size: clamp(15px, 1.5vw, 18px); font-weight: 700;
  color: var(--black); margin-bottom: 6px;
}
.pizza-card-desc {
  font-size: clamp(12px, 1.2vw, 14px); color: var(--grey-4);
  line-height: 1.5; margin-bottom: 16px;
}
.pizza-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--grey-2);
}
.pizza-card-price {
  font-size: clamp(18px, 2vw, 22px); font-weight: 800; color: var(--red);
}
.pizza-card-sizes { display: flex; gap: 6px; }
.size-chip {
  font-size: 11px; font-weight: 600; padding: 4px 8px;
  border-radius: var(--radius-sm); background: var(--grey-1);
  color: var(--grey-5); cursor: pointer; transition: all var(--transition);
}
.size-chip:hover, .size-chip.active {
  background: var(--red); color: var(--white);
}
.btn-add-cart {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 400; transition: all var(--transition);
  line-height: 1;
}
.btn-add-cart:hover {
  background: var(--red-dark); transform: scale(1.15);
}

/* Carousel Nav */
.carousel-nav {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 28px; align-items: center;
}
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--red); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all var(--transition);
}
.carousel-btn:hover {
  background: var(--red); color: var(--white);
}

/* ── PROMO BANNER ── */
.promo-section { background: var(--cream); }
.promo-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}
.promo-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px); position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid var(--cream-dark);
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.promo-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--red); opacity: 0.06;
}
.promo-emoji { font-size: clamp(36px, 5vw, 56px); margin-bottom: 16px; }
.promo-label {
  font-size: clamp(11px, 1.1vw, 13px); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--red);
  margin-bottom: 8px;
}
.promo-title {
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 800;
  color: var(--black); margin-bottom: 12px; line-height: 1.2;
}
.promo-desc {
  font-size: clamp(13px, 1.3vw, 15px); color: var(--grey-4);
  line-height: 1.6; margin-bottom: 20px;
}
.promo-price {
  font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--red);
  margin-bottom: 20px;
}
.promo-price small {
  font-size: 0.5em; font-weight: 500; color: var(--grey-4);
  text-decoration: line-through; margin-left: 8px;
}

/* ── LOCATIONS MAP PREVIEW ── */
.locations-preview { background: var(--grey-1); }
.postcode-search {
  display: flex; gap: 12px; max-width: 560px;
  margin: 0 auto 48px; flex-wrap: wrap;
}
.postcode-search input {
  flex: 1 1 200px; padding: clamp(14px, 2vw, 18px) clamp(16px, 2vw, 24px);
  border: 2px solid var(--grey-2); border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 500; color: var(--black);
  background: var(--white); transition: border-color var(--transition);
}
.postcode-search input:focus {
  outline: none; border-color: var(--red);
}
.postcode-search input::placeholder { color: var(--grey-3); }
.location-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(12px, 2vw, 20px); margin-top: 36px;
}
.location-stat {
  text-align: center; background: var(--white);
  padding: clamp(20px, 3vw, 28px); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid var(--grey-2);
}
.location-stat strong {
  display: block; font-size: clamp(28px, 4vw, 40px); font-weight: 900;
  color: var(--red); line-height: 1; margin-bottom: 6px;
}
.location-stat span { font-size: clamp(12px, 1.3vw, 14px); color: var(--grey-4); font-weight: 600; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px); box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-2); transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #FFC107; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-size: clamp(14px, 1.4vw, 16px); color: var(--grey-5);
  line-height: 1.7; margin-bottom: 20px; font-style: italic;
}
.testimonial-text::before { content: '"'; color: var(--red); font-size: 2em; line-height: 0.5; vertical-align: -0.4em; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
  background: var(--grey-2); flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-size: 14px; font-weight: 700; color: var(--black); }
.author-city { font-size: 12px; color: var(--grey-4); margin-top: 2px; }
.city-tag {
  margin-left: auto; background: var(--cream); color: var(--red);
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: var(--radius-xl);
}

/* ── NEWSLETTER ── */
.newsletter-section {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.newsletter-section::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.newsletter-inner {
  position: relative; z-index: 1; text-align: center;
  max-width: 640px; margin: 0 auto;
}
.newsletter-inner h2 {
  font-size: clamp(26px, 4vw, 44px); font-weight: 800;
  color: var(--white); margin-bottom: 12px;
}
.newsletter-inner p {
  font-size: clamp(14px, 1.5vw, 17px); color: rgba(255,255,255,0.85);
  margin-bottom: 32px; line-height: 1.6;
}
.newsletter-form {
  display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1 1 200px; padding: clamp(14px, 2vw, 16px) clamp(16px, 2vw, 20px);
  border: none; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500; color: var(--black);
  background: var(--white);
}
.newsletter-form input:focus { outline: 3px solid rgba(255,255,255,0.5); }
.newsletter-form button {
  background: var(--black); color: var(--white);
  padding: clamp(14px, 2vw, 16px) clamp(24px, 3vw, 32px);
  border-radius: var(--radius-sm); font-weight: 700; font-size: 15px;
  transition: all var(--transition); white-space: nowrap;
}
.newsletter-form button:hover { background: var(--grey-5); }
.newsletter-offer {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3); color: var(--white);
  padding: 8px 18px; border-radius: var(--radius-xl); font-size: 13px; font-weight: 600;
}

/* ── FOOTER ── */
footer {
  background: var(--black); color: var(--white);
  padding: clamp(60px, 8vw, 100px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px) clamp(48px, 6vw, 80px);
}
.footer-brand p {
  font-size: clamp(13px, 1.3vw, 15px); color: var(--grey-3);
  line-height: 1.7; margin-top: 16px; max-width: 300px;
}
.footer-contact {
  margin-top: 24px; display: flex; flex-direction: column; gap: 10px;
}
.footer-contact a, .footer-contact span {
  font-size: clamp(12px, 1.2vw, 14px); color: var(--grey-3);
  display: flex; align-items: center; gap: 8px; transition: color var(--transition);
}
.footer-contact a:hover { color: var(--red-light); }
.footer-col h4 {
  font-size: clamp(13px, 1.3vw, 15px); font-weight: 700;
  color: var(--white); margin-bottom: 20px; letter-spacing: 0.05em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: clamp(12px, 1.2vw, 14px); color: var(--grey-3);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--red-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: clamp(20px, 3vw, 28px) clamp(16px, 4vw, 48px);
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-size: clamp(12px, 1.2vw, 14px); color: var(--grey-4);
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a {
  font-size: clamp(12px, 1.2vw, 14px); color: var(--grey-4);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--red-light); }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: clamp(18px, 2vw, 22px); font-weight: 800; color: var(--red);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--white); }

/* ── SOCIAL ICONS ── */
.social-links {
  display: flex; gap: 12px; margin-top: 20px;
}
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-3); font-size: 16px;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--red); border-color: var(--red); color: var(--white);
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #3a0a0a 100%);
  padding: calc(var(--nav-h) + clamp(48px, 8vw, 100px)) 0 clamp(48px, 8vw, 100px);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(211,47,47,0.2) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(76,175,80,0.1) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(32px, 6vw, 72px); font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 16px;
}
.page-hero h1 span { color: var(--red-light); }
.page-hero p {
  font-size: clamp(15px, 2vw, 20px); color: rgba(255,255,255,0.75);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}
.breadcrumb {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 20px; font-size: 13px; color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--red-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── UTILITY ── */
.text-red { color: var(--red); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }

/* ── FORM ELEMENTS ── */
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--black); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: clamp(12px, 1.5vw, 16px) clamp(14px, 2vw, 18px);
  border: 2px solid var(--grey-2); border-radius: var(--radius-sm);
  font-size: 16px; color: var(--black);
  background: var(--white); transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211,47,47,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error {
  color: var(--red); font-size: 12px; margin-top: 6px; font-weight: 500;
}

/* ── NOTIFICATIONS / TOAST ── */
#toast-container {
  position: fixed; top: calc(var(--nav-h) + 16px); right: 16px;
  z-index: 9990; display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: var(--black); color: var(--white);
  padding: 14px 20px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; max-width: 320px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); border-left: 4px solid var(--green);
  animation: slideInRight 0.3s ease both;
}
.toast.error { border-left-color: var(--red); }
.toast.info { border-left-color: var(--red); }
@keyframes slideInRight {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* ── CART SIDEBAR ── */
#cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw);
  background: var(--white); z-index: 2000; box-shadow: var(--shadow-xl);
  transform: translateX(100%); transition: transform var(--transition);
  display: flex; flex-direction: column;
}
#cart-sidebar.open { transform: translateX(0); }
.cart-header {
  padding: 20px 24px; border-bottom: 1px solid var(--grey-2);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.cart-header h3 { font-size: 20px; font-weight: 800; }
.cart-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grey-1); display: flex; align-items: center;
  justify-content: center; font-size: 20px; transition: all var(--transition);
}
.cart-close:hover { background: var(--red); color: var(--white); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%; gap: 16px;
  color: var(--grey-3); text-align: center;
}
.cart-empty svg { width: 80px; height: 80px; opacity: 0.3; }
.cart-empty p { font-size: 16px; font-weight: 600; }
.cart-item {
  display: flex; gap: 12px; padding: 16px 0;
  border-bottom: 1px solid var(--grey-2);
}
.cart-item-img {
  width: 72px; height: 72px; border-radius: var(--radius-sm);
  overflow: hidden; flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.cart-item-size { font-size: 12px; color: var(--grey-4); margin-bottom: 8px; }
.cart-item-qty {
  display: flex; align-items: center; gap: 8px;
}
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--grey-1); font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.qty-btn:hover { background: var(--red); color: var(--white); }
.qty-num { font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; }
.cart-item-price { font-size: 16px; font-weight: 800; color: var(--red); align-self: center; }
.cart-footer {
  padding: 20px 24px; border-top: 1px solid var(--grey-2); flex-shrink: 0;
}
.cart-promo {
  display: flex; gap: 8px; margin-bottom: 16px;
}
.cart-promo input {
  flex: 1; padding: 10px 14px; border: 2px solid var(--grey-2);
  border-radius: var(--radius-sm); font-size: 14px;
}
.cart-promo input:focus { outline: none; border-color: var(--red); }
.cart-promo button {
  background: var(--grey-1); padding: 10px 16px;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 700;
  color: var(--grey-5); transition: all var(--transition);
}
.cart-promo button:hover { background: var(--red); color: var(--white); }
.cart-totals { margin-bottom: 20px; }
.cart-total-row {
  display: flex; justify-content: space-between;
  font-size: 14px; color: var(--grey-4); margin-bottom: 8px;
}
.cart-total-row.grand {
  font-size: 18px; font-weight: 800; color: var(--black);
  border-top: 2px solid var(--grey-2); padding-top: 12px; margin-top: 12px;
}
.cart-total-row.grand span:last-child { color: var(--red); }

/* Cart overlay */
#cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1999; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
#cart-overlay.visible { opacity: 1; pointer-events: all; }

/* ── PULSE ANIMATION ── */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── REVEAL ON SCROLL ── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MAP PLACEHOLDER ── */
.map-frame {
  width: 100%; height: clamp(300px, 50vw, 500px);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--grey-2); background: var(--grey-1);
}
.map-frame iframe {
  width: 100%; height: 100%; border: none;
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--grey-2); border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  width: 100%; padding: clamp(16px, 2vw, 20px) clamp(20px, 3vw, 28px);
  display: flex; align-items: center; justify-content: space-between;
  font-size: clamp(14px, 1.5vw, 17px); font-weight: 600;
  text-align: left; transition: all var(--transition);
  background: var(--white);
}
.faq-question:hover { background: var(--grey-1); }
.faq-question.open { background: var(--red); color: var(--white); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid currentColor; display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 500px; padding: clamp(16px, 2vw, 20px) clamp(20px, 3vw, 28px);
}
.faq-answer p {
  font-size: clamp(13px, 1.4vw, 15px); color: var(--grey-5); line-height: 1.7;
}
