:root {
  --coffee-dark: #2b1a12;
  --coffee: #4b2e20;
  --terracotta: #b0603f;
  --olive: #6f7256;
  --cream: #f5efe6;
  --white: #ffffff;
  --text: #2b1a12;
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: 'Helvetica Neue', Arial, sans-serif; letter-spacing: 0.5px; }

a { color: inherit; text-decoration: none; }

.btn {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--coffee); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--coffee-dark); }

/* Promo bar */
.promo-bar {
  background: var(--coffee-dark);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
}
.promo-track {
  display: inline-block;
  animation: promo-scroll 25s linear infinite;
}
.promo-track span { margin: 0 32px; }
@keyframes promo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header icons */
.header-icons { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--coffee-dark);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: background 0.15s ease;
}
.icon-btn:hover { background: rgba(0,0,0,0.06); }
.lang-btn {
  border: 1px solid var(--coffee-dark);
  border-radius: 20px;
  width: auto;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: bold;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.header-icons .cart-btn { margin-left: 0; width: 34px; height: 34px; }

/* Search overlay */
.search-overlay, .account-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 310;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}
.search-overlay.open, .account-overlay.open { opacity: 1; pointer-events: auto; }
.search-modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  width: min(500px, 90%);
  position: relative;
  max-height: 70vh;
  overflow-y: auto;
}
.search-modal .cart-close { position: absolute; top: 12px; right: 16px; }
#searchInput {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.15);
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: inherit;
}
.search-result-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.search-result-item small { opacity: 0.6; }

.account-overlay .checkout-modal { text-align: center; }
.account-overlay .checkout-modal p { margin-bottom: 20px; opacity: 0.8; }

/* Wishlist heart */
.product-image { position: relative; }
.wishlist-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--white);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--coffee-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.wishlist-heart.active { color: var(--terracotta); }

/* Product carousel */
.product-carousel { padding: 48px 0; background: var(--white); }
.carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.carousel-header h2 { font-size: 1.6rem; }
.carousel-arrows button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--olive);
  background: var(--white);
  cursor: pointer;
  margin-left: 8px;
}
.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}
.carousel-track img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
.logo img { height: 48px; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}
.nav-links a { font-weight: 600; font-family: 'Helvetica Neue', Arial, sans-serif; }
.nav-links a:hover { color: var(--terracotta); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--coffee-dark);
}
.cart-btn {
  position: relative;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: 20px;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Hero */
.hero {
  background: var(--coffee-dark);
  color: var(--white);
  padding: 80px 0;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-portrait {
  width: 320px;
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  object-fit: cover;
}
.hero-text { flex: 1; min-width: 280px; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--olive);
  background: rgba(245, 239, 230, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(245, 239, 230, 0.3);
}
.hero-text h1 { font-size: 3rem; margin-bottom: 16px; }
.hero-text p { font-size: 1.15rem; margin-bottom: 24px; opacity: 0.9; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Order modes */
.order-modes { background: var(--white); padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.order-modes-inner {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.order-mode-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 2px solid var(--olive);
  color: var(--coffee-dark);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.order-mode-btn:hover { background: var(--olive); color: var(--cream); }
.order-mode-icon { font-size: 1.3rem; }

/* Trust strip */
.trust-strip { background: var(--olive); padding: 20px 0; }
.trust-strip-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  text-align: center;
}
.trust-stat { color: var(--cream); font-family: 'Helvetica Neue', Arial, sans-serif; }
.trust-stat strong { display: block; font-size: 1.6rem; line-height: 1.2; }
.trust-stat span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }

/* About */
.about { padding: 80px 0; }
.about-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.about-photo {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.about-text { flex: 1; min-width: 280px; }
.about h2 { margin-bottom: 16px; font-size: 2rem; }
.about p { font-size: 1.05rem; }

/* Menu */
.menu { padding: 80px 0; background: var(--white); }
.menu h2 { text-align: center; font-size: 2rem; margin-bottom: 8px; }
.menu-hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--olive);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 32px;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.tab-btn {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--coffee);
  border: 2px solid var(--olive);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.tab-btn:hover { background: rgba(111, 114, 86, 0.15); }
.tab-btn.active { background: var(--olive); color: var(--cream); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4px 40px;
  max-width: 900px;
  margin: 0 auto;
}
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 8px;
  margin: 0 -8px;
  border-bottom: 1px dashed rgba(43, 26, 18, 0.15);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s ease;
}
.menu-row:not(.menu-row-head):hover { background: rgba(111, 114, 86, 0.1); }
.menu-row-head { cursor: default; }
.menu-row span:first-child { font-weight: 600; }
.menu-row span:last-child { font-weight: bold; color: var(--olive); white-space: nowrap; }
.menu-row span:last-child::after { content: ' EGP'; font-size: 0.7rem; font-weight: 600; opacity: 0.7; }
:lang(ar) .menu-row span:last-child::after { content: ' ج.م'; }

.menu-list.single-col { grid-template-columns: 1fr; max-width: 480px; }
.menu-row-sizes .sizes { display: flex; gap: 18px; }
.menu-row-sizes .sizes span { min-width: 34px; text-align: right; }
.menu-row-sizes .sizes span::after { content: ''; }
.menu-row-head { border-bottom: 2px solid var(--olive); }
.menu-row-head span:first-child { opacity: 0; }
.menu-row-head .sizes span { font-weight: bold; color: var(--coffee); opacity: 1; }

/* Shop */
.shop { padding: 80px 0; background: var(--cream); }
.shop h2 { text-align: center; font-size: 2rem; margin-bottom: 8px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
}
.product-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0 auto 12px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
}
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.product-weight { font-size: 0.85rem; opacity: 0.7; margin-bottom: 16px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-price { font-weight: bold; color: var(--olive); font-family: 'Helvetica Neue', Arial, sans-serif; }
.add-to-cart-btn { padding: 8px 16px; font-size: 0.85rem; }

/* Cart drawer */
.cart-overlay, .checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 300;
}
.cart-overlay.open, .checkout-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 100%);
  height: 100%;
  background: var(--white);
  z-index: 301;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cart-close { background: none; border: none; font-size: 1.8rem; cursor: pointer; line-height: 1; color: var(--coffee-dark); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-empty { opacity: 0.6; text-align: center; margin-top: 40px; }
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.cart-item-meta { font-size: 0.8rem; opacity: 0.65; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; }
.cart-item-qty button {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--olive);
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.cart-footer { padding: 20px; border-top: 1px solid rgba(0,0,0,0.08); }
.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.cart-checkout-btn { width: 100%; }

/* Checkout modal */
.checkout-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  width: min(440px, 90%);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.checkout-modal h3 { margin-bottom: 20px; font-size: 1.4rem; }
.checkout-modal .cart-close { position: absolute; top: 16px; right: 16px; }
#checkoutForm { display: flex; flex-direction: column; gap: 12px; }
#checkoutForm input {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.15);
  font-family: inherit;
  font-size: 1rem;
}
#checkoutForm .btn:disabled { opacity: 0.6; cursor: not-allowed; }
#checkoutNote { font-size: 0.9rem; color: var(--terracotta); }

/* Menu order modal */
.menu-order-modal { width: min(720px, 95%); max-height: 85vh; text-align: left; }
.menu-order-modal h2 { font-size: 1.6rem; margin-bottom: 8px; }
.menu-order-modal .menu-hint { margin-bottom: 24px; }
.menu-row > span:last-child, .menu-row-sizes .sizes span { position: relative; }
.item-qty-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--terracotta) !important;
  color: var(--white) !important;
  font-size: 0.65rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 10px;
  line-height: 1.2;
  white-space: nowrap;
}
.order-cart-bar {
  position: sticky;
  bottom: -32px;
  margin: 24px -32px -32px;
  padding: 16px 32px;
  background: var(--coffee-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 0 var(--radius) var(--radius);
}
.order-cart-bar .btn { padding: 10px 22px; }
.order-cart-bar[hidden] { display: none; }

/* Gallery */
.gallery { padding: 80px 0; }
.gallery h2 { text-align: center; font-size: 2rem; margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Contact */
.contact { padding: 80px 0; background: var(--coffee-dark); color: var(--white); }
.contact-inner {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.contact-inner > div, .contact-form { flex: 1; min-width: 280px; }
.contact h2 { margin-bottom: 16px; font-size: 2rem; }
.contact p { margin-bottom: 12px; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: none;
  font-family: inherit;
  font-size: 1rem;
}
.form-note { font-size: 0.9rem; opacity: 0.85; margin-top: 4px; }
.social-links { font-size: 0.95rem; }
.social-links a { text-decoration: underline; }
.social-links a:hover { color: var(--terracotta); }
.directions-btn { display: inline-block; margin-top: 20px; }
.map-embed {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2) contrast(1.05); }

/* Footer */
.site-footer {
  background: var(--coffee-dark);
  color: var(--white);
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 36px; margin-bottom: 12px; }
.site-footer p { font-size: 0.9rem; opacity: 0.8; }
.footer-legal-links { margin-top: 10px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.footer-legal-links a { color: var(--white); opacity: 0.75; text-decoration: underline; font-size: 0.85rem; }
.footer-legal-links a:hover { opacity: 1; }

/* WhatsApp floating button */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* Persistent ORDER PAULO button */
.order-paulo-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 200;
  background: var(--olive);
  color: var(--cream);
  border: none;
  padding: 16px 28px;
  border-radius: 30px;
  font-weight: bold;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}
.order-paulo-fab:hover { transform: scale(1.05); background: var(--coffee-dark); }

.order-mode-modal { text-align: center; }
.order-mode-options { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.order-mode-options .order-mode-btn { width: 100%; justify-content: center; }

.schedule-datetime-field { display: flex; flex-direction: column; gap: 6px; }
.schedule-datetime-field[hidden] { display: none; }
.schedule-datetime-field label { font-size: 0.9rem; font-weight: 600; }
.schedule-datetime-field input {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.15);
  font-family: inherit;
}

/* Smart menu: filters + item cards */
.menu-filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.filter-chip {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--cream);
  border: 1px solid var(--olive);
  color: var(--coffee);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
}
.filter-chip.active { background: var(--olive); color: var(--cream); }
.menu-item-card {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(43,26,18,0.15);
}
.menu-item-card .menu-row { border-bottom: none; padding: 6px 0; margin: 0; }
.menu-item-nutrition {
  font-size: 0.78rem;
  opacity: 0.65;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: -2px 0 4px;
}
.menu-item-allergens { font-size: 0.78rem; color: var(--terracotta); font-family: 'Helvetica Neue', Arial, sans-serif; }
.menu-item-disclaimer { font-size: 0.7rem; opacity: 0.5; margin-top: 4px; }
.menu-empty { text-align: center; opacity: 0.6; padding: 32px 0; }
.menu-loading { text-align: center; opacity: 0.6; padding: 32px 0; }

/* Paulo Match */
.match-progress { font-size: 0.8rem; opacity: 0.6; margin-bottom: 8px; direction: ltr; unicode-bidi: isolate; }
.match-question { margin-bottom: 20px; font-size: 1.3rem; }
.match-options { display: flex; flex-direction: column; gap: 12px; }
.match-result-card {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(43,26,18,0.15);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Branch Finder */
.branch-finder { padding: 60px 0; background: var(--white); text-align: center; }
.branch-finder h2 { margin-bottom: 16px; }
#branchFinderResults { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; margin-top: 24px; text-align: left; max-width: 700px; margin-left: auto; margin-right: auto; }
.branch-card { background: var(--cream); border-radius: var(--radius); padding: 20px; }
.branch-status { font-weight: bold; font-family: 'Helvetica Neue', Arial, sans-serif; }
.branch-status.open { color: var(--olive); }
.branch-status.closed { color: var(--terracotta); }

/* .btn-outline is designed for dark backgrounds (white border/text); on light
   sections it renders invisible, so re-color it wherever it sits on white/cream. */
.branch-finder .btn-outline,
.branch-card .btn-outline,
.checkout-modal .btn-outline {
  border-color: var(--coffee-dark);
  color: var(--coffee-dark);
}
.branch-finder .btn-outline:hover,
.branch-card .btn-outline:hover,
.checkout-modal .btn-outline:hover {
  background: var(--coffee-dark);
  color: var(--white);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .hero-text h1 { font-size: 2.2rem; }
  .header-icons { gap: 2px; }
  .icon-btn { width: 30px; height: 30px; }
  .header-icons .cart-btn { width: 30px; height: 30px; font-size: 1.1rem; }
  .lang-btn { padding: 3px 8px; }
  .carousel-track img { width: 160px; height: 190px; }
}
