/* =============================================
   WOLLY BURGER — ELEGANT LIGHT PURPLE WEBSITE
   Cityland Mall, Dubai — Beside Global Village
   Slogan: BUILT TO BURGER !
   ============================================= */

:root {
  /* AUTHENTIC BURGER RESTAURANT PALETTE */
  --bg-main: #FAF9F5;          /* Warm clean background */
  --bg-surface: #F3EFE6;       /* Warm surface section background */
  --bg-card: #FFFFFF;          /* Pure white card background */
  
  --purple-brand: #EA580C;     /* Flame Orange Brand Accent */
  --purple-dark: #C2410C;      /* Deep Flame Orange Dark Accent */
  --purple-light-tag: #FFEDD5; /* Soft Warm Amber Tag */
  
  --yellow-accent: #F59E0B;    /* Store yellow */
  --yellow-dark: #D97706;
  
  --text-primary: #0F172A;     /* Primary dark slate text */
  --text-secondary: #334155;   /* Body text */
  --text-muted: #64748B;       /* Muted text */
  
  --border-light: #FED7AA;
  --border-neutral: #E2E8F0;   /* Clean normal card border */
  
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(234, 88, 12, 0.12);
  --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body.warm-burger-theme, body.light-purple-theme, body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- UTILITY ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple-brand);
  background: var(--purple-light-tag);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
}

.section-desc {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ---- BUTTONS ---- */
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--purple-brand);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.25);
}

.btn-main:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.35);
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--yellow-accent);
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: rgba(250, 245, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(124, 53, 184, 0.08);
  padding: 12px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: 'Lilita One', cursive;
  font-size: 2rem;
  color: #7C35B8; /* Signature Light Purple Logo Color */
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--purple-brand);
  background: var(--purple-light-tag);
}

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

.nav-order-btn {
  background: var(--yellow-accent);
  color: var(--text-primary);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nav-order-btn:hover {
  background: var(--yellow-dark);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
}

/* ---- HERO SECTION WITH BACKGROUND VIDEO ---- */
.hero-video-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 70px;
  overflow: hidden;
  text-align: center;
}

.hero-video-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(30, 19, 43, 0.65) 0%,
    rgba(76, 29, 149, 0.55) 50%,
    rgba(250, 245, 255, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  color: var(--purple-brand);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 22px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-family: 'Lilita One', cursive;
  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero-title em {
  font-style: normal;
  color: var(--yellow-accent);
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 680px;
  margin: 0 auto 34px;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  padding: 14px 32px;
  border-radius: 50px;
  gap: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.stat-item strong {
  display: block;
  font-size: 1.25rem;
  color: var(--purple-brand);
  font-weight: 900;
}

.stat-item span {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 28px;
  background: var(--border-light);
}

/* ---- TICKER BAR ---- */
.scroll-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: var(--yellow-accent);
  padding: 12px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 25s linear infinite;
}

.ticker-track span {
  font-family: 'Lilita One', cursive;
  font-size: 1.05rem;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.ticker-track .dot {
  margin: 0 18px;
  color: var(--purple-dark);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- SHOP SECTION (PHOTO 5) ---- */
.shop-section {
  padding: 80px 0;
  background: var(--bg-surface);
}

.shop-showcase-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: center;
}

.shop-main-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid #ffffff;
}

.shop-photo-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.shop-photo-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(30, 19, 43, 0.88);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
}

.shop-slogan-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(30, 19, 43, 0.9) 0%, transparent 100%);
  padding: 24px 20px 16px;
}

.shop-slogan-overlay span {
  font-family: 'Lilita One', cursive;
  font-size: 2rem;
  color: var(--yellow-accent);
}

.shop-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shop-info-card {
  background: var(--bg-card);
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-neutral);
  box-shadow: var(--shadow-sm);
}

.info-card-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.shop-info-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.shop-info-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.shop-order-btns {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.mini-order-btn {
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff;
}

.mini-order-btn.talabat { background: #FF5A00; }
.mini-order-btn.deliveroo { background: #00CCBC; }

/* ---- MENU SECTION (CLEAN NORMAL CARDS, NO SANDWICH OPTION, NO PURPLE) ---- */
.menu {
  padding: 90px 0;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  background: #ffffff;
  color: #334155;
  border: 1px solid #cbd5e1;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  border-color: #475569;
  color: #0f172a;
}

.tab-btn.active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
}

/* SIMPLE NORMAL BURGER CARD DESIGN */
.simple-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-neutral);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.simple-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}

.card-img-container {
  width: 100%;
  height: 200px;
  background: #f8fafc;
  overflow: hidden;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-item-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.card-item-desc {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.5;
  flex-grow: 1;
}

.single-price-row {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: flex-end;
}

.normal-price-badge {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  background: #f1f5f9;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
}

.nugget-price-row {
  display: flex;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.nugget-tier {
  flex: 1;
  background: #f8fafc;
  padding: 6px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.nugget-tier span {
  display: block;
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 700;
}

.nugget-tier strong {
  font-size: 0.92rem;
  color: #0f172a;
}

/* EXTRAS SECTION */
.extras-container {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.extra-block {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-neutral);
  box-shadow: var(--shadow-sm);
}

.extra-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.extra-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
}

.extra-price-tag {
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
}

.extra-subtitle {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 18px;
}

.sauce-grid-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sauce-pill {
  background: #f8fafc;
  color: #334155;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
}

.drinks-list-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drink-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: #f8fafc;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid #f1f5f9;
}

.drink-item strong {
  color: #0f172a;
}

/* ---- INTERACTIVE ORDER MODAL ---- */
.order-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.order-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.order-modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.order-modal-backdrop.active .order-modal-card {
  transform: translateY(0);
}

.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.92rem;
  color: #64748b;
  margin-bottom: 24px;
}

.modal-options-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-option-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.2s ease;
}

.order-option-btn:hover {
  transform: translateY(-2px);
}

.option-icon {
  font-size: 1.8rem;
}

.order-option-btn strong {
  display: block;
  font-size: 1.05rem;
}

.order-option-btn small {
  font-size: 0.8rem;
  opacity: 0.9;
}

.talabat-bg { background: #FF5A00; }
.deliveroo-bg { background: #00CCBC; }
.whatsapp-bg { background: #25D366; }
.phone-bg { background: var(--purple-brand); }

/* ---- ABOUT SECTION ---- */
.about {
  padding: 80px 0;
  background: var(--bg-surface);
}

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

.about-imgs {
  position: relative;
}

.about-img-main img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-img-float {
  position: absolute;
  bottom: -20px;
  right: -15px;
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 3px solid #ffffff;
}

.about-img-float img {
  width: 100%;
  display: block;
}

.float-badge {
  background: var(--yellow-accent);
  color: var(--text-primary);
  font-weight: 800;
  font-size: 0.8rem;
  text-align: center;
  padding: 5px;
  text-transform: uppercase;
}

.about-text .about-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 12px;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text-primary);
}

.about-list .check {
  color: var(--purple-brand);
  font-weight: 900;
}

.delivery-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.del-badge {
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  color: #ffffff;
}

.talabat-btn { background: #FF5A00; }
.deliveroo-btn { background: #00CCBC; }

/* ---- WHY CHOOSE US ---- */
.why-us {
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--bg-card);
  padding: 28px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ---- CONTACT & LOCATION ---- */
.contact-section {
  padding: 80px 0;
  background: var(--bg-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.info-icon {
  font-size: 1.4rem;
  background: var(--purple-light-tag);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.info-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.tel-link {
  color: var(--purple-brand);
  text-decoration: none;
  font-weight: 700;
}

.map-wrap {
  background: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.map-header {
  margin-bottom: 14px;
}

.map-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
}

.map-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.map-container {
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--purple-dark);
  color: #ffffff;
  padding: 60px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  font-family: 'Lilita One', cursive;
  font-size: 2rem;
  color: #A855F7; /* Light Purple Logo Accent on Dark Footer */
  letter-spacing: 1px;
}

.footer-brand p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.footer-socials {
  margin-top: 14px;
}

.footer-socials a {
  color: var(--yellow-accent);
  text-decoration: none;
  font-weight: 700;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--yellow-accent);
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--yellow-accent);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #0f172a;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .shop-showcase-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .extras-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .hamburger {
    display: flex;
  }
  .hero-stats {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .stat-divider {
    width: 40px;
    height: 1px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
