/* =============================================
   AÇAÍ DE BABA — Premium Restaurant Website
   Color Scheme: Purple/Violet + Green + White
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --purple-dark: #4A1259;
  --purple-primary: #7B2D8E;
  --purple-mid: #9B4DCA;
  --purple-light: #C084FC;
  --purple-bg: #F5F0FF;
  --green-dark: #2E7D32;
  --green-primary: #4CAF50;
  --green-light: #81C784;
  --green-accent: #A8E063;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-light: #F0F0F0;
  --gray-mid: #999;
  --gray-dark: #333;
  --text-dark: #2D1B4E;
  --text-body: #555;
  --gold: #FFD700;
  --strawberry: #E8343A;
  --strawberry-dark: #C01832;
  --shadow-sm: 0 2px 8px rgba(75, 18, 89, 0.10);
  --shadow-md: 0 8px 32px rgba(75, 18, 89, 0.15);
  --shadow-lg: 0 16px 48px rgba(75, 18, 89, 0.20);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility ---------- */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--strawberry), var(--strawberry-dark));
  color: var(--white);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 600px;
  margin: 0 auto 48px;
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(135deg, var(--purple-primary), var(--green-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--purple-light), var(--green-accent));
  border-radius: 4px;
  animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(74, 18, 89, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--purple-light), var(--green-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
}

.nav-logo-text span {
  color: var(--green-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-accent);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark)) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section — Video Background + Web3 ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  background: #1a0525;
}

/* Video layer */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10, 2, 20, 0.88) 0%, rgba(10, 2, 20, 0.55) 35%, rgba(10, 2, 20, 0.08) 55%, rgba(10, 2, 20, 0.08) 70%, rgba(10, 2, 20, 0.2) 100%),
    linear-gradient(to bottom, rgba(10, 2, 20, 0.6) 0%, rgba(10, 2, 20, 0.1) 25%, transparent 50%, rgba(10, 2, 20, 0.15) 75%, rgba(10, 2, 20, 0.7) 100%);
  pointer-events: none;
}

/* Interactive canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Top-left block */
.hero-top-left {
  position: absolute;
  top: 140px;
  left: clamp(24px, 5vw, 80px);
  z-index: 4;
  max-width: 420px;
  animation: heroFadeIn 1s ease 0.3s both;
}

.hero-badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 215, 0, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  color: #FFD700;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-accent);
  box-shadow: 0 0 8px var(--green-accent);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green-accent); }
  50% { opacity: 0.5; box-shadow: 0 0 16px var(--green-accent), 0 0 32px var(--green-accent); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  color: #FFFFFF;
  line-height: 1.05;
  margin: 0;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.8),
    0 4px 32px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(0, 0, 0, 0.3);
  font-weight: 800;
}

.hero-title-accent {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
  filter: drop-shadow(0 2px 8px rgba(255, 165, 0, 0.5));
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 400px;
  margin-top: 20px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
  font-weight: 400;
}

@keyframes shimmerText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Bottom-left block */
.hero-bottom-left {
  position: absolute;
  bottom: clamp(40px, 6vh, 80px);
  left: clamp(24px, 5vw, 80px);
  z-index: 4;
  animation: heroFadeIn 1s ease 0.6s both;
}

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(76, 175, 80, 0.35);
}

.hero-cta-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--green-accent), var(--purple-light));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.hero-cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 40px rgba(76, 175, 80, 0.55), 0 0 60px rgba(168, 224, 99, 0.2);
}

.hero-cta-btn:hover::before {
  opacity: 1;
}

.hero-cta-btn i {
  transition: transform 0.3s;
}

.hero-cta-btn:hover i {
  transform: translateX(4px);
}

.hero-cta-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-cta-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--purple-light);
  transition: width 0.3s;
}

.hero-cta-link:hover {
  color: var(--white);
}

.hero-cta-link:hover::after {
  width: 100%;
}

/* Floating glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 2;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb--1 {
  width: 300px;
  height: 300px;
  background: var(--purple-light);
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 200px;
  height: 200px;
  background: var(--green-accent);
  bottom: 15%;
  right: 5%;
  animation-delay: -4s;
}

.hero-orb--3 {
  width: 250px;
  height: 250px;
  background: var(--strawberry);
  top: 60%;
  left: 30%;
  opacity: 0.12;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.1); }
  50% { transform: translate(-15px, 25px) scale(0.95); }
  75% { transform: translate(20px, 15px) scale(1.05); }
}

/* Mouse-follow glow */
.hero-mouse-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 3;
  transform: translate(-50%, -50%);
  transition: left 0.15s ease-out, top 0.15s ease-out, opacity 0.3s;
  opacity: 0;
  will-change: left, top;
}

.hero:hover .hero-mouse-glow {
  opacity: 1;
}

/* Shared button styles (keep for rest of site) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-full);
  border: 2px solid var(--strawberry);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(232, 52, 58, 0.15);
  border-color: var(--strawberry);
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ---------- Features Strip ---------- */
.features-strip {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--purple-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--purple-primary);
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

/* ---------- About Section ---------- */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 500px;
}

.about-img-main {
  width: 70%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 20px;
  right: 60px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-mid));
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.about-experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-badge .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-content .section-badge {
  display: inline-block;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 32px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-highlight i {
  color: var(--green-primary);
  font-size: 1.1rem;
}

.about-highlight span {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* ---------- Menu Section ---------- */
.menu {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--purple-bg) 0%, var(--white) 100%);
}

.menu-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
  margin-bottom: 48px;
  /* fade edges to hint scrollability */
  mask-image: linear-gradient(to right, transparent 0%, black 24px, black calc(100% - 24px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 24px, black calc(100% - 24px), transparent 100%);
  padding-left: 24px;
  padding-right: 24px;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--purple-light);
  background: var(--white);
  color: var(--purple-primary);
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.menu-tab:hover,
.menu-tab.active {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-mid));
  color: var(--white);
  border-color: var(--purple-primary);
  box-shadow: 0 4px 16px rgba(123, 45, 142, 0.3);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
}

.menu-category-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-dark);
  padding: 12px 0 8px;
  margin: 32px 0 16px;
  border-bottom: 2px solid var(--purple-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-category-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(to bottom, var(--purple-primary), var(--green-primary));
  border-radius: 2px;
}

.menu-category:first-of-type .menu-category-title {
  margin-top: 16px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;   /* vertical: image top, content bottom */
  cursor: pointer;
  position: relative;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.menu-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0;   /* card has its own border-radius */
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.06);
}

.menu-card-content {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-weight: 600;
}

.menu-card-desc {
  font-size: 0.82rem;
  color: var(--gray-mid);
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--purple-primary);
  font-weight: 700;
}

.menu-card-price .currency {
  font-size: 0.8rem;
  font-family: var(--font-body);
}

.menu-card-size {
  font-size: 0.75rem;
  color: var(--gray-mid);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.menu-card-tags {
  display: flex;
  gap: 6px;
}

.menu-tag {
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-tag.vegan {
  background: #E8F5E9;
  color: var(--green-dark);
}

.menu-tag.popular {
  background: #FFF3E0;
  color: #E65100;
}

.menu-tag.new {
  background: #F3E5F5;
  color: var(--purple-primary);
}

.menu-tag.gf {
  background: #FFF8E1;
  color: #F57F17;
}

/* ---------- Specialties Section ---------- */
.specialties {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-primary) 100%);
  position: relative;
  overflow: hidden;
}

.specialties::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.specialties .section-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.specialties .section-title {
  color: var(--white);
}

.specialties .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.specialty-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.specialty-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.specialty-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.specialty-card:hover .specialty-card-image img {
  transform: scale(1.1);
}

.specialty-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.specialty-card-price-tag {
  display: inline-block;
  background: var(--green-primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
}

.specialty-card-content {
  padding: 24px;
}

.specialty-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.specialty-card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}

.specialty-card-meta {
  display: flex;
  gap: 16px;
}

.specialty-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.specialty-card-meta span i {
  color: var(--green-accent);
}

/* ---------- Gallery Section ---------- */
.gallery {
  padding: 100px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123, 45, 142, 0.6), rgba(76, 175, 80, 0.3));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--purple-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--green-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.testimonial-source {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  color: var(--purple-bg);
  font-family: var(--font-heading);
  line-height: 1;
}

/* Google Reviews Badge */
.google-rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  box-shadow: var(--shadow-md);
  margin: 0 auto 48px;
  max-width: 500px;
}

.google-rating-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.google-rating-score {
  text-align: center;
}

.google-rating-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: var(--font-heading);
  line-height: 1;
}

.google-rating-stars {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin: 6px 0;
}

.google-rating-stars i {
  color: #FBBC05;
  font-size: 1rem;
}

.google-rating-count {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.testimonial-header .testimonial-stars {
  margin-bottom: 0;
}

.google-icon-small {
  flex-shrink: 0;
}

.google-reviews-btn {
  display: inline-flex;
  align-items: center;
}

/* ---------- Location Section ---------- */
.location {
  padding: 100px 0;
  background: #f8f9fb;
}

.location .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-info {
  padding-top: 20px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.location-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-light);
}

.location-detail:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.location-detail-icon {
  width: 52px;
  height: 52px;
  background: var(--purple-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple-primary);
  font-size: 1.2rem;
}

.location-detail h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.location-detail p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

.location-detail a {
  color: var(--purple-primary);
  font-weight: 500;
  transition: var(--transition);
}

.location-detail a:hover {
  color: var(--purple-mid);
}

.location-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-link.instagram {
  background: linear-gradient(135deg, #F56040, #C13584, #833AB4);
  color: var(--white);
}

.social-link.facebook {
  background: #1877F2;
  color: var(--white);
}

.social-link.tiktok {
  background: #000;
  color: var(--white);
}

.social-link.whatsapp {
  background: #25D366;
  color: var(--white);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 0 0 4px rgba(255,255,255,0.9), 0 0 0 5px rgba(0,0,0,0.08);
  height: 100%;
  min-height: 450px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
}

/* Gallery placeholder */
.gallery-item--placeholder {
  background: linear-gradient(135deg, var(--purple-bg, #f3e8ff), var(--gray-light, #f1f1f4));
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-placeholder-icon {
  display: none;
  font-size: 2rem;
  color: var(--gray-mid);
  opacity: 0.5;
}
.gallery-item--placeholder .gallery-placeholder-icon {
  display: flex;
}

/* ---------- CTA Section ---------- */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 50%, #66BB6A 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta .container {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-dark);
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--purple-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--purple-light), var(--green-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-title {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
  color: var(--green-accent);
  padding-left: 6px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  border-color: var(--green-accent);
}

.newsletter-form button {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border: none;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.4);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--green-accent);
}

/* ---------- Scroll to Top ---------- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-mid));
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ---------- Animations on Scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-top-left {
    top: 120px;
    max-width: 340px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }

  .specialties-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .location .container {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablet nav: shrink gaps and allow horizontal scroll if needed */
@media (min-width: 769px) and (max-width: 1024px) {
  .navbar .container {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .navbar .container::-webkit-scrollbar {
    display: none;
  }

  .nav-links {
    gap: 16px;
    flex-shrink: 0;
  }

  .nav-links a {
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .nav-logo-img {
    height: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--purple-dark);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: right 0.4s;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .specialties-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .gallery-item {
    height: 200px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-top-left {
    top: 100px;
    max-width: 280px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-bottom-left {
    bottom: 30px;
  }

  .hero-cta-btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .hero-tagline {
    font-size: 0.8rem;
  }

  .hero-orb { display: none; }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-top-left {
    top: 90px;
    left: 16px;
    max-width: 240px;
  }

  .hero-bottom-left {
    left: 16px;
    bottom: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    gap: 8px;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tab {
    padding: 10px 20px;
    font-size: 0.82rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ---------- Image Placeholders ---------- */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
}

.img-placeholder.bowl-1 {
  background: linear-gradient(135deg, #6B2FA0 0%, #4A1259 50%, #2E1065 100%);
}

.img-placeholder.bowl-2 {
  background: linear-gradient(135deg, #D946EF 0%, #9333EA 100%);
}

.img-placeholder.bowl-3 {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.img-placeholder.bowl-4 {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.img-placeholder.bowl-5 {
  background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
}

.img-placeholder.bowl-6 {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.img-placeholder.restaurant {
  background: linear-gradient(135deg, #1F1F3A 0%, #2D1B4E 100%);
}

.img-placeholder.food {
  background: linear-gradient(135deg, #7B2D8E 0%, #4CAF50 100%);
}

/* ---------- Language Toggle ---------- */
.lang-toggle {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 8px;
  margin-right: 8px;
  font-family: var(--font-body);
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ---------- RTL / Arabic Support ---------- */
html[dir="rtl"] {
  --font-body: 'Noto Sans Arabic', 'Inter', sans-serif;
}

html[dir="rtl"] body {
  font-family: var(--font-body);
}

html[dir="rtl"] .nav-links {
  direction: rtl;
}

html[dir="rtl"] .nav-links a::after {
  left: auto;
  right: 0;
}

html[dir="rtl"] .hero-content {
  text-align: right;
}

html[dir="rtl"] .hero-buttons {
  justify-content: flex-start;
}

html[dir="rtl"] .about-content {
  text-align: right;
}

html[dir="rtl"] .location-info {
  text-align: right;
}

html[dir="rtl"] .location-detail {
  flex-direction: row-reverse;
}

html[dir="rtl"] .about-highlight {
  flex-direction: row-reverse;
}

html[dir="rtl"] .feature-item {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .footer-links a:hover {
  padding-left: 0;
  padding-right: 6px;
}

html[dir="rtl"] .menu-card {
  flex-direction: column;   /* same vertical layout for RTL */
}

html[dir="rtl"] .menu-card-image {
  border-radius: 0;
}

html[dir="rtl"] .menu-card-content {
  text-align: right;
}

html[dir="rtl"] .menu-card-footer {
  flex-direction: row-reverse;
}

html[dir="rtl"] .footer-brand,
html[dir="rtl"] .footer-links-col {
  text-align: right;
}

html[dir="rtl"] .footer-bottom {
  direction: rtl;
}

html[dir="rtl"] .scroll-top {
  right: auto;
  left: 32px;
}

html[dir="rtl"] .lang-toggle {
  margin-left: 8px;
  margin-right: 8px;
}

html[dir="rtl"] .section-badge,
html[dir="rtl"] .hero-badge {
  direction: rtl;
}

@media (max-width: 768px) {
  html[dir="rtl"] .nav-links {
    right: auto;
    left: -100%;
    text-align: right;
  }
  html[dir="rtl"] .nav-links.open {
    left: 0;
  }
  html[dir="rtl"] .hero-content {
    text-align: center;
  }
}

/* ---------- Add-to-Cart Button ---------- */
.btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 18px;
  background: var(--green-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  font-family: var(--font-body);
  white-space: nowrap;
}

.btn-add-cart:hover {
  background: var(--green-dark);
  transform: scale(1.04);
}

.btn-add-cart.added {
  background: var(--purple-primary);
}

/* ---------- Menu Card Controls ---------- */
.menu-card-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* Size selector */
.size-selector {
  display: flex;
  gap: 4px;
}

.size-btn {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gray-light);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Qty badge on individual size buttons */
.size-qty-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--green-accent);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.size-btn:hover {
  border-color: var(--purple-primary);
  color: var(--purple-primary);
}

.size-btn.active {
  background: var(--purple-primary);
  border-color: var(--purple-primary);
  color: var(--white);
}

/* Qty controls on cards */
.qty-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  padding: 0;
}

.qty-btn:hover {
  background: var(--bg-section);
  border-color: var(--purple-primary);
  color: var(--purple-primary);
}

.qty-value {
  font-weight: 700;
  font-size: 0.92rem;
  min-width: 22px;
  text-align: center;
}

/* Read more toggle */
.read-more-toggle {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--purple-primary);
  cursor: pointer;
  font-weight: 600;
  margin-top: 2px;
}

.read-more-toggle:hover {
  text-decoration: underline;
}

.menu-card-desc.expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

/* Phone button in navbar */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.nav-phone:hover {
  background: rgba(255, 255, 255, 0.22);
}

.nav-phone i {
  font-size: 0.8rem;
}

/* ---------- Floating Cart FAB ---------- */
.cart-fab {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: var(--purple-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(123, 45, 142, 0.45);
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
}

.cart-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(123, 45, 142, 0.55);
}

.cart-fab-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--green-primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  transition: transform 0.3s;
}

.cart-fab.has-items .cart-fab-count {
  transform: scale(1.15);
}

.cart-fab.hidden {
  transform: scale(0);
  pointer-events: none;
}

/* ---------- Cart Drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-light);
  background: var(--bg-section);
}

.cart-drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-drawer-close {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-light);
  border: none;
  font-size: 0.9rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-family: var(--font-body);
  transition: background 0.2s, color 0.2s;
}

.cart-drawer-close i {
  font-size: 0.85rem;
}

.cart-drawer-close:hover {
  background: #e53e3e;
  color: var(--white);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  color: var(--gray-mid);
  padding: 40px 0;
  font-size: 0.95rem;
}

/* Cart Item */
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-light);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 0.8rem;
  color: var(--purple-primary);
  font-weight: 600;
  margin-top: 2px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
}

.cart-item-qty button:hover {
  background: var(--bg-section);
  border-color: var(--purple-primary);
}

.cart-item-qty span {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #e53e3e;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 4px;
  transition: opacity 0.2s;
}

.cart-item-remove:hover {
  opacity: 0.7;
}

/* Grouped cart display */
.cart-group {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
}

.cart-group-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.cart-line {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0 4px 12px;
  font-size: 0.85rem;
}

.cart-line-size {
  font-weight: 600;
  color: var(--purple-primary);
  min-width: 18px;
}

.cart-line-price {
  color: var(--text-light);
  font-size: 0.78rem;
  min-width: 52px;
}

.cart-line-subtotal {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.82rem;
  min-width: 56px;
  text-align: right;
  margin-left: auto;
}

/* Cart Footer */
.cart-drawer-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-light);
  background: var(--bg-section);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  font-family: var(--font-body);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-whatsapp i {
  font-size: 1.25rem;
}

/* RTL cart drawer */
html[dir="rtl"] .cart-drawer {
  right: auto;
  left: -420px;
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.15);
}

html[dir="rtl"] .cart-drawer.open {
  left: 0;
}

html[dir="rtl"] .cart-fab {
  right: auto;
  left: 32px;
}

html[dir="rtl"] .cart-item {
  flex-direction: row-reverse;
}

html[dir="rtl"] .cart-item-info {
  text-align: right;
}

html[dir="rtl"] .cart-line {
  flex-direction: row-reverse;
  padding: 4px 12px 4px 0;
}

html[dir="rtl"] .cart-line-subtotal {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

html[dir="rtl"] .cart-group-name {
  text-align: right;
}

html[dir="rtl"] .size-qty-badge {
  right: auto;
  left: -8px;
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
    right: -100vw;
  }
  .cart-fab {
    bottom: 90px;
    right: 20px;
  }
  html[dir="rtl"] .cart-drawer {
    left: -100vw;
  }
  html[dir="rtl"] .cart-fab {
    left: 20px;
  }
}

/* ========================================
   OUR BRANDS STRIP
   ======================================== */
.brands-strip {
  background: #f7f7f7;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  padding: 48px 24px;
}
.brands-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.brands-strip__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
  margin: 0;
}
.brands-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.brands-strip__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}
.brands-strip__logo-wrap:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  transform: translateY(-3px);
}
.brands-strip__logo-wrap img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) {
  .brands-strip__logos { gap: 24px; }
  .brands-strip__logo-wrap { width: 120px; }
  .brands-strip__logo-wrap img { height: 56px; }
}

/* ---- Mobile: Menu card + controls ---- */
@media (max-width: 768px) {
  .menu-card-controls {
    flex-wrap: wrap;
    gap: 8px;
  }
  .nav-phone span {
    display: none;
  }
  .nav-phone {
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .menu-card-controls {
    justify-content: space-between;
  }
  .size-btn {
    width: 28px;
    height: 28px;
    font-size: 0.68rem;
  }
  .qty-btn {
    width: 28px;
    height: 28px;
  }
  .btn-add-cart {
    padding: 7px 14px;
    font-size: 0.78rem;
  }
  .nav-phone span {
    display: none;
  }
}
