/* ============================================
   FURIES RESTAURANT - DESIGN SYSTEM
   ============================================ */

/* CSS Variables */
:root {
  /* Colors */
  --primary: #FF6B4A;
  --primary-dark: #E55A3A;
  --primary-light: #FF8F7A;
  --secondary: #1A1A1A;
  --text-dark: #1A1A1A;
  --text-light: #666666;
  --text-muted: #999999;
  --bg-white: #FFFFFF;
  --bg-cream: #FFFBF8;
  --bg-light: #F5F5F5;
  --border-light: #E5E5E5;
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 50%;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

.display-xl {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
}

.display-lg {
  font-size: clamp(2rem, 4vw, 3rem);
}

.display-md {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-base);
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-ghost {
  padding: 0.5rem;
  color: var(--text-light);
}

.btn-ghost:hover {
  color: var(--primary);
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: white;
  padding: var(--space-lg);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.nav-mobile.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-mobile .nav-links {
  flex-direction: column;
  gap: var(--space-md);
}

.nav-mobile .nav-links a {
  font-size: 1.1rem;
  padding: 0.5rem 0;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding-top: 120px;
  padding-bottom: var(--space-2xl);
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-content-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.reviews-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.avatar-group {
  display: flex;
}

.avatar-group img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -10px;
  object-fit: cover;
}

.avatar-group img:first-child {
  margin-left: 0;
}

.reviews-text {
  font-size: 0.85rem;
}

.reviews-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.reviews-text span {
  color: var(--text-muted);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-title .decorative-o {
  display: inline-block;
  position: relative;
}

.hero-title .decorative-o::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.7em;
  height: 0.7em;
  border: 3px solid var(--text-dark);
  border-radius: 50%;
}

.hero-title .decorative-o::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--text-dark);
  border-radius: 50%;
}

.hero-description {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 300px;
}

.video-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.video-thumb {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  margin-left: 2px;
}

.video-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.video-label strong {
  display: block;
  color: var(--text-dark);
  font-size: 1rem;
}

/* Hero Center - Food Image */
.hero-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.food-frame {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.food-frame-inner {
  position: relative;
  border-radius: 200px 200px 100px 100px;
  overflow: hidden;
  background: var(--secondary);
  aspect-ratio: 3/4;
}

.food-frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curved-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  pointer-events: none;
}

.curved-text svg {
  width: 100%;
  height: 100%;
  animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.curved-text text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  fill: var(--text-dark);
  text-transform: uppercase;
}

.floating-badge {
  position: absolute;
  top: 10%;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  animation: float 3s ease-in-out infinite;
  box-shadow: var(--shadow-md);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-badge svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
  fill: none;
  margin-top: 4px;
}

/* Hero Right - Offers */
.hero-content-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.offer-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.offer-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.offer-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.1) 0%, rgba(255, 107, 74, 0.2) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.offer-content h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 2px;
}

.offer-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.featured-dishes {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mini-dish {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.mini-dish:hover {
  box-shadow: var(--shadow-md);
}

.mini-dish img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.mini-dish-info {
  flex: 1;
}

.mini-dish-info h5 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.mini-dish-info .price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.original-price {
  color: var(--text-muted);
  text-decoration: line-through;
}

.current-price {
  color: var(--primary);
  font-weight: 700;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: var(--space-sm);
}

.view-all-btn:hover {
  color: var(--primary);
}

.view-all-btn svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-base);
}

.view-all-btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   FOODIES WELCOME SECTION
   ============================================ */

.foodies-section {
  padding: var(--space-2xl) 0;
  background: white;
  position: relative;
}

.foodies-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.welcome-graphic {
  position: relative;
  display: flex;
  justify-content: center;
}

.welcome-circle {
  position: relative;
  width: 400px;
  height: 400px;
}

.welcome-circle-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.welcome-smiley {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 50%;
  position: relative;
  margin-bottom: var(--space-md);
}

.welcome-smiley::before {
  content: '';
  position: absolute;
  top: 35%;
  left: 30%;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  box-shadow: 20px 0 0 white;
}

.welcome-smiley::after {
  content: '';
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 12px;
  border: 3px solid white;
  border-top: none;
  border-radius: 0 0 24px 24px;
}

.welcome-circle-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 150px;
  border-radius: 100px 100px 0 0;
  overflow: hidden;
}

.welcome-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circular-text-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotate-slow 30s linear infinite;
}

.circular-text-container text {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.4em;
  fill: var(--text-dark);
  text-transform: uppercase;
}

.foodies-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.foodies-text p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */

.categories-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-cream);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.category-card {
  text-align: center;
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.category-img {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--bg-light);
  transition: var(--transition-base);
}

.category-card:hover .category-img {
  border-color: var(--primary-light);
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}

.category-card:hover .category-img img {
  transform: scale(1.1);
}

.category-card h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.category-card .price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.category-card .desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   MENU SECTION (for menu page)
   ============================================ */

.menu-section {
  padding-top: 120px;
  padding-bottom: var(--space-2xl);
  background: var(--bg-cream);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.menu-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  background: white;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: var(--transition-base);
}

.menu-tab:hover,
.menu-tab.active {
  color: var(--primary);
  border-color: var(--primary);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.menu-item {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.menu-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.menu-item-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}

.menu-item:hover .menu-item-img img {
  transform: scale(1.05);
}

.menu-item-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
}

.add-to-cart {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.add-to-cart:hover {
  background: var(--primary);
}

.add-to-cart:hover svg {
  stroke: white;
}

.add-to-cart svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-dark);
  stroke-width: 2;
  fill: none;
  transition: var(--transition-base);
}

.menu-item-content {
  padding: var(--space-md);
}

.menu-item-content h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.menu-item-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.rating svg {
  width: 16px;
  height: 16px;
  fill: #FFC107;
}

.menu-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  padding-top: 120px;
  padding-bottom: var(--space-2xl);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: 30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.experience-badge .years {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.8rem;
  opacity: 0.9;
}

.about-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.about-content p {
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.1) 0%, rgba(255, 107, 74, 0.2) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-item h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  padding-top: 120px;
  padding-bottom: var(--space-2xl);
  background: var(--bg-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
}

.contact-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.1) 0%, rgba(255, 107, 74, 0.2) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item-content h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-item-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-form {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
  padding: var(--space-2xl) 0;
  background: white;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  text-align: center;
  padding: var(--space-xl);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  border: 4px solid var(--primary-light);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.testimonial-rating svg {
  width: 24px;
  height: 24px;
  fill: #FFC107;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.testimonial-author h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.testimonial-nav button {
  width: 48px;
  height: 48px;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.testimonial-nav button:hover {
  border-color: var(--primary);
  background: var(--primary);
}

.testimonial-nav button:hover svg {
  stroke: white;
}

.testimonial-nav svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-dark);
  stroke-width: 2;
  fill: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--secondary);
  color: white;
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo {
  color: white;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.footer-links h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  color: white;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-newsletter h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  color: white;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.newsletter-form {
  display: flex;
  gap: var(--space-xs);
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.newsletter-form button:hover {
  background: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.payment-methods {
  display: flex;
  gap: var(--space-sm);
}

.payment-methods span {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   CART SIDEBAR
   ============================================ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: white;
  z-index: 2001;
  transform: translateX(100%);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.cart-header h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
}

.cart-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-base);
}

.cart-close:hover {
  background: var(--bg-light);
}

.cart-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-dark);
  stroke-width: 2;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
}

.cart-empty {
  text-align: center;
  padding: var(--space-xl);
  color: var(--text-muted);
}

.cart-empty svg {
  width: 64px;
  height: 64px;
  stroke: var(--border-light);
  stroke-width: 1;
  margin-bottom: var(--space-md);
}

.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cart-item-details .price {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}

.quantity-btn {
  width: 28px;
  height: 28px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition-base);
}

.quantity-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cart-item-quantity {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

.cart-item-remove {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: var(--transition-base);
}

.cart-item-remove:hover {
  color: var(--primary);
}

.cart-footer {
  padding: var(--space-md);
  border-top: 1px solid var(--border-light);
  background: var(--bg-cream);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.cart-total span:first-child {
  font-size: 1rem;
  color: var(--text-light);
}

.cart-total .total-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cart-footer .btn {
  width: 100%;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-content-right {
    display: none;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  :root {
    --space-2xl: 4rem;
    --space-xl: 3rem;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content-left {
    align-items: center;
  }
  
  .hero-description {
    max-width: 500px;
  }
  
  .hero-center {
    order: -1;
  }
  
  .food-frame {
    max-width: 350px;
  }
  
  .foodies-content {
    grid-template-columns: 1fr;
  }
  
  .welcome-circle {
    width: 300px;
    height: 300px;
  }
  
  .welcome-circle-inner {
    width: 220px;
    height: 220px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-images {
    order: -1;
  }
  
  .about-img-float {
    display: none;
  }
  
  .experience-badge {
    left: 20px;
    width: 120px;
    height: 120px;
  }
  
  .experience-badge .years {
    font-size: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .category-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: var(--space-md);
  }
  
  .category-img {
    width: 80px;
    height: 80px;
    margin: 0;
    flex-shrink: 0;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .cart-sidebar {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-2xl: 3rem;
    --space-xl: 2rem;
    --space-lg: 1.5rem;
  }
  
  .header-inner {
    height: 70px;
  }
  
  .nav-mobile {
    top: 70px;
  }
  
  .hero {
    padding-top: 100px;
  }
  
  .food-frame {
    max-width: 280px;
  }
  
  .curved-text {
    width: 110%;
    height: 110%;
  }
  
  .floating-badge {
    width: 60px;
    height: 60px;
    font-size: 0.6rem;
  }
  
  .floating-badge svg {
    width: 14px;
    height: 14px;
  }
  
  .welcome-circle {
    width: 250px;
    height: 250px;
  }
  
  .welcome-circle-inner {
    width: 180px;
    height: 180px;
  }
  
  .welcome-smiley {
    width: 40px;
    height: 40px;
  }
  
  .welcome-smiley::before {
    width: 6px;
    height: 6px;
    box-shadow: 14px 0 0 white;
  }
  
  .welcome-smiley::after {
    width: 16px;
    height: 8px;
    border-width: 2px;
  }
  
  .welcome-circle-img {
    width: 140px;
    height: 100px;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
}
