/* ============================================
   MENU.CSS - Styles for menu.html ONLY
   ============================================ */

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

:root {
  --primary: #c8102e;
  --secondary: #2d5016;
  --gold: #d4a574;
  --dark: #1a1a1a;
  --brown: #6b4423;
  --cream: #fff8f0;
  --orange: #e86a33;
  --green: #4a7c2c;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  padding-top: 100px;
}

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

/* ============================================
   HEADER TOP BAR
   ============================================ */

.header-top {
  background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
  padding: 0.7rem 0;
  color: white;
}

.header-top-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.header-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.header-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.header-links a:hover {
  color: var(--gold);
}

.header-social {
  display: flex;
  gap: 1rem;
}

.header-social a {
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.header-social a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================
   MAIN HEADER
   ============================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 15px rgba(200, 16, 46, 0.1);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.8rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--orange));
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark);
  transition: all 0.3s;
}

.menu-toggle:hover {
  color: var(--primary);
  transform: scale(1.1);
}

/* ============================================
   LOGO
   ============================================ */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  gap: 0.8rem;
  transition: all 0.3s;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(200, 16, 46, 0.2);
  transition: all 0.3s;
}

.logo:hover img {
  box-shadow: 0 5px 20px rgba(200, 16, 46, 0.3);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text-main {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--orange) 50%,
    var(--gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.5px;
  filter: drop-shadow(0 2px 6px rgba(200, 16, 46, 0.25));
  transition: all 0.3s;
}

.logo-text-sub {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  margin-top: -2px;
  margin-left: 2px;
  opacity: 0.85;
  transition: all 0.3s;
}

.logo:hover .logo-text-main {
  letter-spacing: 2px;
  filter: drop-shadow(0 3px 10px rgba(200, 16, 46, 0.4));
}

.logo:hover .logo-text-sub {
  opacity: 1;
  color: var(--orange);
}

/* ============================================
   SCROLLING TICKER
   ============================================ */

.services-ticker {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  color: white;
  overflow: hidden;
  height: 50px;
  display: flex;
  align-items: center;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.ticker-content {
  display: flex;
  animation: scroll-left 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-block;
  padding: 0 3rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.ticker-item::after {
  content: "•";
  margin-left: 1.5rem;
  opacity: 0.6;
}

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

.services-ticker:hover .ticker-content {
  animation-play-state: paused;
}

/* ============================================
   DARK MODE TOGGLE
   ============================================ */

.dark-mode-toggle {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--dark);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.dark-mode-toggle:hover {
  background: var(--dark);
  color: white;
  transform: rotate(20deg);
}

/* ============================================
   MENU NAVIGATION
   ============================================ */

.menu-navigation {
  position: sticky;
  top: 114px;
  background: white;
  padding: 1.2rem 4%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 997;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.menu-navigation::-webkit-scrollbar {
  display: none;
}

.menu-navigation a {
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
  color: var(--dark);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  white-space: nowrap;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(200, 16, 46, 0.1);
}

.menu-navigation a:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(200, 16, 46, 0.3);
}

.menu-navigation a.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.4);
}

/* ============================================
   MENU HERO
   ============================================ */

.menu-hero {
  padding: 3rem 4%;
  background: linear-gradient(135deg, var(--cream) 0%, #ffe8d6 100%);
  text-align: center;
}

.menu-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.menu-hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #666;
  margin-bottom: 1.5rem;
}

.menu-note {
  background: linear-gradient(
    135deg,
    rgba(200, 16, 46, 0.1) 0%,
    rgba(232, 106, 51, 0.1) 100%
  );
  padding: 1rem 1.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--primary);
  font-size: 0.95rem;
  display: inline-block;
}

/* ============================================
   MENU CATEGORIES
   ============================================ */

.menu-category {
  padding: 3rem 4%;
}

.menu-category:nth-child(even) {
  background: linear-gradient(135deg, #fff9f5 0%, #ffe8d6 100%);
}

.menu-category:nth-child(odd) {
  background: white;
}

.category-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.category-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.category-header p {
  color: #666;
  font-size: 1.05rem;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(200, 16, 46, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 3px solid transparent;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  padding: 3px;
  background: linear-gradient(135deg, #c8102e, #e86a33, #d4a574);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(200, 16, 46, 0.25);
}

.product-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 240px;
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.15) rotate(2deg);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #c8102e 0%, #e86a33 100%);
  color: white;
  padding: 0.5rem 1.1rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 10;
  box-shadow: 0 6px 15px rgba(200, 16, 46, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.product-info {
  padding: 1.5rem;
  background: white;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(135deg, #fff8e1 0%, #ffe8d6 100%);
  border-radius: 12px;
  border-left: 4px solid #d4a574;
}

.stars {
  color: #ffb800;
  font-size: 0.95rem;
  text-shadow: 0 2px 4px rgba(255, 184, 0, 0.3);
}

.rating-count {
  color: #666;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.product-desc {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 2px solid #ffe8d6;
  gap: 1rem;
}

.product-price {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c8102e 0%, #e86a33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.order-btn {
  background: linear-gradient(135deg, #c8102e 0%, #e86a33 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 6px 15px rgba(200, 16, 46, 0.3);
  position: relative;
  overflow: hidden;
}

.order-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.order-btn:hover::before {
  left: 100%;
}

.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 16, 46, 0.4);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  padding: 4rem 4%;
  background: linear-gradient(135deg, var(--primary) 0%, #a00d24 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-order {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.whatsapp-order:hover {
  transform: translateY(-3px);
  background: #1ebe57;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

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

footer {
  background: #0a2f35;
  color: white;
  padding: 3rem 4% 2rem;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

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

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

.social-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.1rem;
  color: white;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

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

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 30px;

  width: 55px;
  height: 55px;

  background: linear-gradient(135deg, #ff7a3d, #c8102e);
  color: white;

  border: none;
  border-radius: 50%;

  font-size: 20px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

  opacity: 0;
  pointer-events: none;

  transition: all 0.3s ease;

  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
}

.back-to-top:active {
  transform: translateY(-2px);
}

/* ============================================
   DARK MODE
   ============================================ */

body.dark-mode {
  background: #1a1a1a;
  color: #e0e0e0;
}

body.dark-mode .logo-text-main {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 107, 0.4));
}

body.dark-mode .logo-text-sub {
  color: #ffa500;
}

body.dark-mode header {
  background: #2d2d2d;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

body.dark-mode nav a {
  color: #e0e0e0;
}

body.dark-mode nav a:hover {
  color: var(--primary);
}

body.dark-mode .dark-mode-toggle {
  border-color: #e0e0e0;
  color: #e0e0e0;
}

body.dark-mode .dark-mode-toggle:hover {
  background: #e0e0e0;
  color: #1a1a1a;
}

body.dark-mode .menu-navigation {
  background: #2d2d2d;
}

body.dark-mode .menu-navigation a {
  background: #3d3d3d;
  color: #e0e0e0;
}

body.dark-mode .menu-navigation a:hover,
body.dark-mode .menu-navigation a.active {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
}

body.dark-mode .menu-category:nth-child(even) {
  background: #2d2d2d;
}

body.dark-mode .menu-category:nth-child(odd) {
  background: #1a1a1a;
}

body.dark-mode .category-header h2,
body.dark-mode .menu-hero-content h1 {
  color: #e0e0e0;
}

body.dark-mode .category-header p,
body.dark-mode .menu-hero-content p {
  color: #b0b0b0;
}

body.dark-mode .product-card {
  background: #3d3d3d;
}

body.dark-mode .product-name {
  color: #e0e0e0;
}

body.dark-mode .product-desc {
  color: #b0b0b0;
}

body.dark-mode .back-to-top {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

body.dark-mode .back-to-top:hover {
  box-shadow: 0 12px 30px rgba(255, 107, 107, 0.5);
}

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

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */

@media (min-width: 969px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 968px) {
  .header-top {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
  }

  header {
    box-shadow: 0 2px 10px rgba(200, 16, 46, 0.1);
  }

  .nav-container {
    padding: 0.6rem 5%;
    gap: 1rem;
    width: 100%;
    max-width: 100vw;
  }

  .logo {
    gap: 0.6rem;
  }

  .logo img {
    height: 50px;
  }

  .logo-text-main {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .logo-text-sub {
    font-size: 0.65rem;
  }

  .nav-actions {
    gap: 0.6rem;
    margin-left: auto;
  }

  .dark-mode-toggle {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .menu-toggle {
    display: block !important;
    font-size: 1.5rem;
    z-index: 1001;
  }

  nav {
    position: absolute;
    right: -9999px;
  }

  nav ul {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  body.dark-mode nav ul {
    background: #2d2d2d;
  }

  nav ul.active {
    left: 0;
  }

  nav ul li {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  body.dark-mode nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav a {
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem;
  }

  .services-ticker {
    top: 60px;
    height: 45px;
  }

  .ticker-item {
    font-size: 0.9rem;
    padding: 0 2rem;
  }

  .menu-navigation {
    top: 105px;
    padding: 1rem 5%;
    justify-content: flex-start;
    gap: 0.8rem;
  }

  .menu-navigation a {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .menu-hero {
    padding: 2rem 5%;
  }

  .menu-category {
    padding: 2rem 5%;
  }

  .category-header {
    margin-bottom: 1.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem;
  }

  .product-image {
    height: 160px;
  }

  .product-info {
    padding: 1rem;
  }

  .product-name {
    font-size: 1.1rem;
  }

  .product-desc {
    font-size: 0.85rem;
  }

  .product-rating {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.5rem;
    align-items: flex-start;
  }

  .product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .product-price {
    font-size: 1.4rem;
  }

  .order-btn {
    width: 100%;
    padding: 0.75rem;
    text-align: center;
  }

  .cta {
    padding: 3rem 5%;
  }

  footer {
    padding: 2.5rem 5% 2rem;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .nav-container {
    padding: 0.5rem 4%;
    min-height: 55px;
  }

  .logo img {
    height: 42px;
  }

  .logo-text-main {
    font-size: 1.4rem;
  }

  .logo-text-sub {
    font-size: 0.6rem;
  }

  .dark-mode-toggle {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .menu-toggle {
    font-size: 1.4rem;
  }

  nav ul {
    top: 55px;
    height: calc(100vh - 55px);
  }

  .services-ticker {
    top: 55px;
    height: 40px;
  }

  .ticker-item {
    font-size: 0.8rem;
    padding: 0 1rem;
  }

  .menu-navigation {
    top: 95px;
    padding: 0.8rem 4%;
    gap: 0.6rem;
  }

  .menu-navigation a {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .menu-hero {
    padding: 1.5rem 4%;
  }

  .menu-category {
    padding: 1.5rem 4%;
  }

  .menu-note {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }

  .products-grid {
    gap: 0.8rem;
  }

  .product-card {
    border-radius: 15px;
  }

  .product-badge {
    padding: 0.35rem 0.8rem;
    font-size: 0.7rem;
  }

  .product-image {
    height: 140px;
  }

  .product-info {
    padding: 0.7rem;
  }

  .product-name {
    font-size: 0.95rem;
  }

  .product-desc {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .product-rating {
    flex-direction: row;
    gap: 0.4rem;
    padding: 0.35rem 0.5rem;
  }

  .stars {
    font-size: 0.75rem;
  }

  .rating-count {
    font-size: 0.65rem;
  }

  .product-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.6rem;
  }

  .product-price {
    font-size: 1.1rem;
  }

  .order-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.7rem;
    width: auto;
  }

  .cta {
    padding: 2rem 4%;
  }

  footer {
    padding: 2rem 4% 1.5rem;
  }

  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}
