/* Manna Cake - Calgary Custom Cakes */

:root {
  --primary: #8B6F47;
  --primary-light: #C4A77D;
  --secondary: #F5E6D3;
  --accent: #E8D4C4;
  --text: #4A3728;
  --text-light: #6B5344;
  --white: #FFFFFF;
  --cream: #FDF8F3;
  --shadow: rgba(74, 55, 40, 0.1);
  --shadow-hover: rgba(74, 55, 40, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; color: var(--text); background: var(--cream); line-height: 1.6; }

/* Header & Navigation */
.header { background: var(--white); box-shadow: 0 2px 20px var(--shadow); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; overflow: visible; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo img, .logo svg { height: 104px; width: auto; max-width: 273px; }
.nav-menu { display: flex; list-style: none; gap: 32px; }
.nav-menu a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s; position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s; }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover { color: var(--primary); }

/* Mobile Menu Toggle */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
.mobile-toggle span { width: 25px; height: 2px; background: var(--text); transition: 0.3s; }

/* Hero Banner */
.hero { margin-top: 80px; position: relative; width: 100%; height: 400px; background: #f5efe6; overflow: hidden; }
.hero-slider { position: relative; height: 100%; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease; background-size: cover; background-position: center; background-image: var(--desktop-bg); }
.hero-slide.active { opacity: 1; }

/* Slider Dot Indicators */
.slider-dots { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; border: 2px solid rgba(255,255,255,0.8); }
.dot.active, .dot:hover { background: var(--white); transform: scale(1.2); }

/* Section Styles */
.section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; color: var(--text); margin-bottom: 15px; }
.section-title p { color: var(--text-light); font-size: 1.1rem; }

/* Products Grid - 3 columns */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card { background: var(--white); border-radius: 15px; /* overflow: hidden; */ box-shadow: 0 5px 25px var(--shadow); transition: transform 0.3s, box-shadow 0.3s; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px var(--shadow-hover); }
.product-image { height: 320px; background: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; /* overflow: hidden; */ }
.product-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size: 4rem; }
.product-info { padding: 25px; }
.product-info h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--text); }
.product-info p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 15px; line-height: 1.5; }
.product-price { font-size: 1.4rem; font-weight: 600; color: var(--primary); }
.product-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-light); }


@media (max-width: 768px) {
  .nav-menu { position: fixed; top: 80px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 30px; gap: 20px; box-shadow: 0 5px 20px var(--shadow); transform: translateY(-150%); transition: transform 0.3s; }
  .nav-menu.active { transform: translateY(0); }
  .mobile-toggle { display: flex; }
  .hero { margin-top: 60px; height: 350px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .section { padding: 60px 20px; }
  .section-title h2 { font-size: 1.8rem; }
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-image { height: 250px; }
  .story-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 20px; text-align: center; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { margin: 0 auto 20px; display: block; max-height: 55px; }
  .footer-brand p { text-align: center; font-size: 0.88rem; grid-column: 1 / -1; }
  .footer-contact p { justify-content: center; }
  .qr-code { margin: 10px auto 0; }
}
/* Floating Order Button */
.floating-btn { position: fixed; bottom: 30px; right: 30px; z-index: 999; }
.floating-btn a { display: flex; align-items: center; gap: 10px; padding: 18px 30px; background: var(--primary); color: var(--white); text-decoration: none; border-radius: 50px; font-weight: 600; letter-spacing: 1px; box-shadow: 0 5px 25px rgba(139, 111, 71, 0.4); transition: all 0.3s; }
.floating-btn a:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(139, 111, 71, 0.5); }
.floating-btn svg { width: 20px; height: 20px; }


@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.5rem; }
  .section-title h2 { font-size: 1.5rem; }
}

/* Page Header */
.page-header { margin-top: 80px; background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%); padding: 80px 20px; text-align: center; }
.page-header h1 { font-size: 2.5rem; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 15px; }
.page-header p { color: var(--text-light); font-size: 1.1rem; }

/* Menu Page */
.menu-categories { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; flex-wrap: wrap; }
.menu-category { padding: 12px 30px; background: var(--white); border: 2px solid var(--accent); border-radius: 30px; cursor: pointer; transition: all 0.3s; font-weight: 500; }
.menu-category:hover, .menu-category.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 30px; color: var(--text); }
.contact-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.contact-item svg { width: 24px; height: 24px; color: var(--primary); flex-shrink: 0; margin-top: 5px; }
.contact-item h4 { font-size: 1.1rem; margin-bottom: 5px; color: var(--text); }
.contact-item p { color: var(--text-light); }
.contact-form { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: 0 5px 25px var(--shadow); }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--text); }
.form-group input, .form-group textarea { width: 100%; padding: 15px; border: 2px solid var(--accent); border-radius: 10px; font-size: 1rem; transition: border-color 0.3s; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { min-height: 150px; resize: vertical; }
.submit-btn { width: 100%; padding: 18px; background: var(--primary); color: var(--white); border: none; border-radius: 10px; font-size: 1rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background 0.3s; }
.submit-btn:hover { background: var(--text); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 30px 20px; }
  .page-header { padding: 60px 20px; }
  .page-header h1 { font-size: 1.8rem; }
}

/* Order Page */
.order-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-bottom: 60px; }
.order-card { background: var(--white); padding: 50px; border-radius: 20px; text-align: center; box-shadow: 0 5px 25px var(--shadow); transition: transform 0.3s; }
.order-card:hover { transform: translateY(-5px); }
.order-card h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--text); }
.order-card p { color: var(--text-light); margin-bottom: 30px; line-height: 1.8; }

@media (max-width: 768px) {
  .order-options { grid-template-columns: 1fr; }
  .order-card { padding: 30px 20px; }
}
/* Our Story - Image Section */
.story-section .story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.story-image-wrapper {
  width: 100%;
  border-radius: 20px;
  /* overflow: hidden; */
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  background: var(--secondary);
}
.story-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}



.story-text {
  color: var(--text);
}
.story-text h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 600;
}
.story-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #555;
}
@media (max-width: 768px) {
  .story-section .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-text h3 {
    font-size: 1.6rem;
  }
}

/* Footer */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 80px 20px 40px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

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

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

.footer-contact p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.qr-code {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.qr-code img {
  width: 100px;
  height: 100px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Logo sizing fix - ensure logo never exceeds container */
a.logo { display: inline-block; }
a.logo img { 
  height: 104px !important; 
  width: auto !important; 
  max-width: 273px !important;
  max-height: 104px !important;
}

/* Footer logo sizing */
.footer-brand img {
  max-width: 150px !important;
  height: auto !important;
  max-height: 80px !important;
}

/* QR Code Image */
.qr-code img { width: 120px; height: auto; border-radius: 8px; }

/* The Manna Story - Homepage Image - SIMPLE */
.story-image {
  width: 100%;
}
.story-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* ========================================
   Home Promos (宽横幅广告)
   ======================================== */

.home-promos {
  padding: 60px 0;
  background: var(--cream);
}

.promos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.promo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: 40px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.promo-banner:last-child {
  margin-bottom: 0;
}

.promo-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-hover);
}

.promo-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.promo-banner:hover .promo-image img {
  transform: scale(1.05);
}

/* 奇数：图片在左 */
.promo-image-left .promo-image {
  order: 1;
}

.promo-image-left .promo-content {
  order: 2;
}

/* 偶数：图片在右 */
.promo-image-right .promo-image {
  order: 2;
}

.promo-image-right .promo-content {
  order: 1;
}

.promo-content {
  padding: 40px;
}

.promo-content h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.promo-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.promo-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s;
}

.promo-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* 移动端响应式 */
@media (max-width: 768px) {
  .promo-banner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .promo-image {
    height: 220px;
    order: 1 !important;
  }
  
  .promo-content {
    order: 2 !important;
    padding: 30px 24px;
  }
  
  .promo-content h2 {
    font-size: 24px;
  }
  
  .promo-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .home-promos {
    padding: 40px 0;
  }
  
  .promos-container {
    padding: 0 16px;
  }
  
  .promo-image {
    height: 180px;
  }
  
  .promo-content {
    padding: 24px 20px;
  }
  
  .promo-content h2 {
    font-size: 22px;
  }
}

/* ========================================
   Info Card Hover Effects
   ======================================== */
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(139, 111, 71, 0.2);
}

/* ========================================
   Customer Reviews Section
   ======================================== */
.reviews-section {
  background: linear-gradient(180deg, var(--cream) 0%, #f0e8dc 100%);
  padding: 80px 0;
}

.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(74, 55, 40, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(74, 55, 40, 0.18);
}

.review-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F5E6D3, #E8D4C4);
}

.review-body {
  padding: 22px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--secondary);
  padding-top: 14px;
}

.review-author strong {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.review-author span {
  color: var(--text-light);
  font-size: 12px;
  letter-spacing: 0.3px;
}

/* 移动端响应式 */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }


  .reviews-section {
    padding: 60px 0;
  }
}

/* ========================================
   Mobile Optimization for Manna Cake
   ======================================== */

/* === Hero Slider === */
@media (max-width: 768px) {
  .hero { margin-top: 60px; }
  .hero-slide { background-size: cover; background-position: center center; }
}

/* Phone: use square mobile banner, fill width, keep cake visible */
@media (max-width: 560px) {
  .hero { margin-top: 60px; height: auto; max-width: none; }
  .hero-slider { height: clamp(210px, 64vw, 340px); }
  .hero-slide { height: clamp(210px, 64vw, 340px); background-image: var(--mobile-bg, var(--desktop-bg)); background-size: cover; background-position: center bottom; }
  .slider-dots { bottom: 15px; }
  .slider-dots .dot { width: 10px; height: 10px; margin: 0 5px; }
}

/* === Promo Banners === */
@media (max-width: 768px) {
  .promo-banners-section { padding: 40px 16px; }
  .promo-banner { grid-template-columns: 1fr; gap: 20px; margin-bottom: 24px; border-radius: 16px; }
  .promo-banner.promo-image-right .promo-image { order: -1; }
  .promo-image { height: 220px; }
  .promo-content { padding: 24px 20px; text-align: center; }
  .promo-content h2 { font-size: 1.3rem; margin-bottom: 12px; }
  .promo-content p { font-size: 0.95rem; line-height: 1.6; }
  .promo-btn { padding: 12px 24px; font-size: 0.9rem; }
}

/* === Reviews Section === */
@media (max-width: 768px) {
  .reviews-section { padding: 50px 16px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
  .review-card { padding: 24px 20px; min-height: auto; }
  .review-image { width: 100%; height: auto; max-height: 240px; border-radius: 12px; aspect-ratio: 3 / 2; }
  .review-image img { width: 100%; height: 100%; object-fit: contain; background: #f5efe6; }
  .review-text { font-size: 0.95rem; line-height: 1.6; }
}

/* === Menu Page === */
@media (max-width: 768px) {
  .page-header { margin-top: 60px; padding: 50px 16px 60px; }
  .page-header h1 { font-size: 1.8rem; letter-spacing: 2px; }
  .page-header p { font-size: 1rem; }
  .menu-categories { padding: 0 16px; gap: 10px; margin-bottom: 30px; }
  .menu-category { padding: 10px 20px; font-size: 0.9rem; }
  .products-grid { padding: 0 16px; grid-template-columns: 1fr; gap: 20px; }
  .product-image { height: 280px; }
  .product-info { padding: 20px; }
  .product-info h3 { font-size: 1.1rem; }
  .product-info p { font-size: 0.9rem; line-height: 1.5; }
  .product-price { font-size: 1.2rem; flex-direction: column; align-items: flex-start; gap: 12px; }
  .order-btn { width: 100%; text-align: center; }
}

/* === Contact Page === */
@media (max-width: 768px) {
  .contact-section { padding: 30px 16px 80px; }
  .contact-container { grid-template-columns: 1fr; gap: 20px; margin-bottom: 60px; }
  .contact-card { padding: 32px 24px; }
  .contact-icon { width: 60px; height: 60px; }
  .contact-card h3 { font-size: 1.2rem; }
  .contact-detail { font-size: 1.1rem; }
  .contact-note { font-size: 0.9rem; }
  .instagram-section { margin-bottom: 60px; }
  .qr-code { width: 160px; height: 160px; }
}

/* === Footer === */
@media (max-width: 768px) {
  .footer { padding: 40px 20px 24px; }
  .footer-content {
    gap: 24px;
    text-align: center;
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }
  .footer-brand img {
    margin: 0 auto 10px;
    max-height: 55px;
  }
  .footer-brand p {
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .footer-nav {
    grid-column: 1 / 2;
    text-align: center;
  }
  .footer-contact {
    grid-column: 2 / 3;
    text-align: center;
  }
  .footer-social {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0;
  }
  .footer-social p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  .footer-title {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  .footer-links li {
    margin-bottom: 6px;
  }
  .footer-links a {
    font-size: 0.85rem;
  }
  .footer-contact p {
    justify-content: center;
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
  .footer-contact svg {
    width: 14px;
    height: 14px;
  }
  .footer-social .qr-code {
    margin: 8px auto 0;
    width: 90px;
    height: 90px;
  }
  .footer-social .qr-code img {
    width: 76px;
    height: 76px;
  }
  .footer-bottom {
    grid-column: 1 / -1;
    margin-top: 18px;
    padding-top: 14px;
    font-size: 0.78rem;
    line-height: 1.5;
  }
}

/* === Floating Button === */
@media (max-width: 768px) {
  .floating-btn { bottom: 16px; right: 12px; }
  .floating-btn a { padding: 14px 24px; font-size: 0.9rem; border-radius: 30px; }
  .floating-btn a span { display: none; }
  .floating-btn svg { width: 22px; height: 22px; }
}

/* === Navigation === */
@media (max-width: 768px) {
  header { padding: 0 16px; }
  .nav-container { height: 60px; }
  .logo img { height: 56px; max-height: 56px; max-width: 160px; }
  a.logo img { height: 56px !important; max-height: 56px !important; max-width: 160px !important; }
  .mobile-toggle { display: flex; flex-direction: column; gap: 4px; padding: 6px; }
  .mobile-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
  .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
  .nav-menu { position: fixed; top: 60px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 12px 24px; gap: 0; box-shadow: 0 4px 20px var(--shadow); transform: translateY(-150%); transition: transform 0.3s ease; z-index: 998; }
  .nav-menu.active { transform: translateY(0); }
  .nav-menu li { border-bottom: 1px solid var(--secondary); }
  .nav-menu li:last-child { border-bottom: none; }
  .nav-menu a { display: block; padding: 14px 0; font-size: 0.95rem; }
  .nav-menu a.active { color: var(--primary); }
  .hero { margin-top: 60px; }
}

/* === Touch-friendly === */
@media (max-width: 768px) {
  .promo-btn, .order-btn, .submit-btn, .menu-category { min-height: 48px; }
  .promo-btn:hover, .order-btn:hover { transform: none; }
  .product-card:hover, .value-card:hover, .contact-card:hover { transform: none; }
}

/* === Text Readability === */
@media (max-width: 768px) {
  body { font-size: 16px; -webkit-text-size-adjust: 100%; }
  p { line-height: 1.7; }
}

/* Hide tagline on mobile */
@media (max-width: 768px) {
  .footer-tagline { display: none; }
}
