/*
Theme Name: Cơm Ngon Sài Gòn
Theme URI: https://comngonsaigon.com
Author: Cơm Ngon Sài Gòn
Author URI: https://comngonsaigon.com
Description: Theme tùy chỉnh cho nhà hàng Cơm Ngon Sài Gòn — chuẩn SEO, tương thích WooCommerce, mobile-first.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: comngonsaigon
Tags: food, restaurant, woocommerce, vietnamese, mobile-first, seo
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --color-brown:       #3d2208;
  --color-brown-dark:  #2a1604;
  --color-brown-mid:   #7a4a1e;
  --color-gold:        #c8860a;
  --color-gold-light:  #e8a020;
  --color-cream:       #fdf6ec;
  --color-warm:        #f5e8d0;
  --color-muted:       #9a7050;
  --color-text:        #4a2c0d;
  --color-border:      rgba(200,134,10,0.2);
  --color-white:       #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', 'Segoe UI', sans-serif;

  --radius-sm: 3px;
  --radius-md: 6px;

  --shadow-card: 0 2px 16px rgba(61,34,8,0.08);
  --shadow-hover: 0 6px 32px rgba(61,34,8,0.14);

  --max-width: 1200px;
  --header-h: 68px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* Skip to content – accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 0; left: 0;
  width: auto; height: auto;
  background: var(--color-gold);
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  font-weight: 600;
}

/* Containers */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--color-brown);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* Section eyebrow label */
.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.6rem;
}

/* Section header block */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { color: var(--color-brown); margin-bottom: 0.75rem; }
.section-rule {
  width: 48px; height: 2px;
  background: var(--color-gold);
  margin: 0.5rem auto 0;
  border: none;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--color-cream);
  border-color: rgba(253,246,236,0.35);
}
.btn-outline:hover {
  border-color: var(--color-gold-light);
  color: var(--color-gold-light);
}

.btn-dark {
  background: var(--color-brown);
  color: var(--color-cream);
  border-color: var(--color-brown);
}
.btn-dark:hover { background: var(--color-brown-mid); }

.btn-grab {
  background: #00b14f;
  color: var(--color-white);
  border-color: #00b14f;
  font-size: 0.85rem;
  padding: 0.9rem 2rem;
}
.btn-grab:hover { background: #00933f; }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#masthead {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-brown);
  height: var(--header-h);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

/* Logo */
.site-branding a {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.site-branding .brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: 0.02em;
}
.site-branding .brand-tagline {
  font-size: 0.65rem;
  font-style: italic;
  color: var(--color-gold-light);
  letter-spacing: 0.1em;
  font-weight: 400;
}

/* Nav menu */
#site-navigation { flex: 1; }

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.primary-menu > li > a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,246,236,0.7);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a {
  color: var(--color-gold-light);
  background: rgba(232,160,32,0.08);
}

/* Header right */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold-light);
}
.header-phone svg { width: 16px; height: 16px; }

/* Cart icon (WooCommerce) */
.cart-icon-wrap {
  position: relative;
  color: rgba(253,246,236,0.7);
  transition: color 0.2s;
}
.cart-icon-wrap:hover { color: var(--color-gold-light); }
.cart-count {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--color-gold);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(253,246,236,0.25);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  color: var(--color-cream);
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  background: var(--color-brown);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: calc(92vh - var(--header-h));
  align-items: center;
}

.hero-content { padding: 4rem 3rem 4rem 0; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(232,160,32,0.3);
  max-width: 40px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1.05;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--color-gold-light);
}
.hero-tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(253,246,236,0.45);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.hero-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(253,246,236,0.55);
  max-width: 400px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  background: var(--color-brown-dark);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 2rem;
}
.hero-img-circle {
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(232,160,32,0.25);
}
.hero-img-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-badge {
  text-align: center;
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
}
.hero-badge-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,246,236,0.35);
  margin-top: 0.2rem;
}

/* =============================================
   INFO BAR
   ============================================= */
.info-bar {
  background: var(--color-gold);
}
.info-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.info-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.info-cell:last-child { border-right: none; }
.info-cell svg { width: 22px; height: 22px; color: rgba(255,255,255,0.85); flex-shrink: 0; }
.info-cell-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1px;
}
.info-cell-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

/* =============================================
   MENU SECTION (WooCommerce product grid)
   ============================================= */
.menu-section { padding: 5rem 0; }

/* Category tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: fit-content;
  margin-inline: auto;
  overflow: hidden;
}
.menu-tab {
  padding: 0.6rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  background: transparent;
  border: none;
  border-right: 1px solid var(--color-border);
  transition: background 0.2s, color 0.2s;
}
.menu-tab:last-child { border-right: none; }
.menu-tab:hover, .menu-tab.active {
  background: var(--color-gold);
  color: #fff;
}

/* WooCommerce product grid override */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce ul.products li.product,
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.woocommerce ul.products li.product:hover,
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.woocommerce ul.products li.product a img,
.product-card .product-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}
.woocommerce ul.products li.product:hover a img,
.product-card:hover .product-thumb img { transform: scale(1.04); }

.product-card-body { padding: 1rem 1.1rem 1.25rem; }

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-card .product-name {
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: var(--color-brown) !important;
  line-height: 1.4 !important;
  margin-bottom: 0.4rem !important;
}

.woocommerce ul.products li.product .price,
.product-card .product-price {
  font-family: var(--font-display) !important;
  font-size: 1.2rem !important;
  color: var(--color-gold) !important;
  font-weight: 700 !important;
}
.woocommerce ul.products li.product .price del,
.product-card .price-old {
  font-size: 0.75rem !important;
  color: var(--color-muted) !important;
  text-decoration: line-through !important;
  margin-right: 0.3rem !important;
}

/* Add to cart button */
.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 0.65rem 1rem !important;
  background: var(--color-gold) !important;
  color: #fff !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: var(--radius-sm) !important;
  border: none !important;
  margin-top: 0.75rem !important;
  transition: background 0.2s !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--color-gold-light) !important;
}

/* Sale badge */
.woocommerce span.onsale,
.badge-sale {
  background: var(--color-gold) !important;
  color: #fff !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  padding: 3px 9px !important;
  border-radius: 2px !important;
  top: 10px !important;
  left: 10px !important;
  right: auto !important;
  min-height: auto !important;
  min-width: auto !important;
  border-radius: 2px !important;
  line-height: 1.6 !important;
}

/* =============================================
   ABOUT / STORY SECTION
   ============================================= */
.about-section {
  background: var(--color-brown);
  padding: 5rem 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content .eyebrow { color: var(--color-gold-light); }
.about-content h2 {
  color: var(--color-cream);
  margin-bottom: 1rem;
}
.about-content h2 em { font-style: italic; color: var(--color-gold-light); }
.about-content p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(253,246,236,0.55);
  margin-bottom: 1rem;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(232,160,32,0.15);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253,246,236,0.3);
  margin-top: 0.25rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.about-card {
  background: var(--color-brown-dark);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.about-card-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  margin-bottom: 0.75rem;
}
.about-card h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 0.4rem;
}
.about-card p {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(253,246,236,0.38);
  line-height: 1.7;
  margin: 0;
}
.about-card-icon {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 2rem;
  opacity: 0.14;
}

/* =============================================
   HIGHLIGHT DISHES
   ============================================= */
.dishes-section { padding: 5rem 0; background: var(--color-warm); }
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.dish-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, transform 0.25s;
}
.dish-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.dish-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.dish-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.dish-card-body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
}
.dish-card-body p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-muted);
}

/* =============================================
   ORDER / CTA SECTION
   ============================================= */
.order-section {
  padding: 4rem 0;
  text-align: center;
  background: var(--color-cream);
}
.order-section h2 { margin-bottom: 0.75rem; }
.order-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.9;
}
.order-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section { padding: 5rem 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact-details { margin-top: 2rem; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-row:last-child { border-bottom: none; }
.contact-row svg { width: 20px; height: 20px; color: var(--color-gold); flex-shrink: 0; margin-top: 2px; }
.contact-row-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 2px;
}
.contact-row-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-brown);
}
.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--color-border);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =============================================
   FOOTER
   ============================================= */
#colophon {
  background: var(--color-brown);
  padding: 3rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(253,246,236,0.08);
}
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-cream);
  display: block;
  margin-bottom: 0.2rem;
}
.footer-brand .brand-tagline {
  font-size: 0.72rem;
  font-style: italic;
  color: var(--color-gold-light);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(253,246,236,0.38);
  line-height: 1.8;
  margin: 0;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(253,246,236,0.45);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--color-gold-light); }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(253,246,236,0.25);
  font-weight: 300;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.72rem;
  color: rgba(253,246,236,0.25);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--color-gold-light); }

/* =============================================
   WOOCOMMERCE — SINGLE PRODUCT
   ============================================= */
.woocommerce div.product div.images { border-radius: var(--radius-md); overflow: hidden; }
.woocommerce div.product p.price { color: var(--color-gold) !important; font-size: 1.5rem !important; }
.woocommerce div.product .product_title { color: var(--color-brown); }

/* =============================================
   BREADCRUMB
   ============================================= */
.woocommerce .woocommerce-breadcrumb {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.woocommerce .woocommerce-breadcrumb a { color: var(--color-gold); }

/* =============================================
   PAGINATION
   ============================================= */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  color: var(--color-brown) !important;
  border-color: var(--color-border) !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--color-gold) !important;
  color: #fff !important;
}

/* =============================================
   NOTICES
   ============================================= */
.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--color-gold) !important;
  background: var(--color-warm) !important;
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 3rem 0; }
  .hero-content h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); }

  .about-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-inner { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .info-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .info-cell { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .info-cell:nth-child(2) { border-right: none; }
  .info-cell:nth-child(3) { border-bottom: none; }
  .info-cell:nth-child(4) { border-right: none; border-bottom: none; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .menu-toggle { display: flex; }

  #site-navigation {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--color-brown-dark);
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    z-index: 999;
    border-top: 1px solid rgba(253,246,236,0.08);
  }
  #site-navigation.open {
    transform: translateY(0);
    opacity: 1;
  }
  .primary-menu { flex-direction: column; align-items: flex-start; gap: 0; }
  .primary-menu > li > a {
    display: block;
    padding: 0.75rem 0.5rem;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(253,246,236,0.06);
    width: 100%;
  }

  .header-phone { display: none; }

  .info-bar-inner { grid-template-columns: 1fr 1fr; }

  .about-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 1.5rem; flex-wrap: wrap; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  .menu-tabs { flex-wrap: wrap; }
  .menu-tab { flex: 1; min-width: 100px; text-align: center; }

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

  .dishes-grid { grid-template-columns: 1fr; }

  .order-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .hero-content { padding: 2.5rem 0; }
}
