/* ═══════════════════════════════════════════════
   JAMROCK BISTRO - MASTER DESIGN SYSTEM
   ═══════════════════════════════════════════════ */

:root {
  --orange: #E8591A;
  --orange-dark: #C44A12;
  --orange-light: #F57C42;
  --gold: #D4A017;
  --gold-light: #F0C84A;
  --cream: #FDF6EE;
  --cream2: #F5EBE0;
  --cream3: #EDE0D0;
  --ink: #1C1410;
  --ink2: #3A2E28;
  --ink3: #6B5B50;
  --ink4: #9C8B7E;
  --white: #FFFFFF;
  --dark: #111008;
  --dark2: #1E1A14;
  --dark3: #2C2620;
  --green: #2D5016;

  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 4px 24px rgba(28,20,16,.10);
  --shadow-lg: 0 12px 48px rgba(28,20,16,.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;

  --nav-h: 88px;
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════════════
   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);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}
img { display: block; width: 100%; height: auto; object-fit: cover; }
.text-center { text-align: center !important; }
.section-center { display: flex; flex-direction: column; align-items: center; text-align: center; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); outline: none; }

.container { max-width: 1200px; margin: 0 auto; width: 100%; padding: 0 40px; }
section { padding: 80px 0; }

/* ═══════════════════════════════════════════════
   NAV (MASTER REPLICA)
   ═══════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: all var(--transition);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: relative;
}
#main-nav.scrolled { 
  background: #000; 
  box-shadow: 0 4px 30px rgba(0,0,0,0.5); 
}

.nav-logo {
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 1001;
}
.nav-logo img {
  height: 55px; /* Increased from 45px for better visibility */
  width: auto;
  display: block;
  transition: transform .3s ease;
}
.nav-logo:hover img { transform: scale(1.05); }

.nav-links-wrap {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}
.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 100px;
  color: rgba(255,255,255,.8);
  transition: all var(--transition);
}
.nav-links li a:hover { color: white; background: rgba(255,255,255,.12); }
.nav-links li a.active { background: var(--orange); color: white; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1001;
}

.nav-cart-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.9) !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  position: relative;
  cursor: pointer;
}
.cart-badge {
  position: absolute;
  top: -8px; 
  right: -8px;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px; 
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center; 
  justify-content: center;
  /* Removed thick black border that was breaking the visual bubble */
  border: 1px solid var(--white); 
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.cart-badge.visible { display: flex; }

/* ═══════════════════════════════════════════════
   HERO / HOME
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
  text-align: center;
}
.hero-bg, .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg-img {
  background: linear-gradient(to top, rgba(18,12,6,.92) 0%, rgba(18,12,6,.4) 60%),
              url('../images/Jamaican-Jerk-Chicken.jpg') center/cover no-repeat;
  z-index: 1;
}
.grain { position: relative; }
.grain::after {
  content: "";
  position: absolute;
  inset: -100%;
  width: 300%;
  height: 300%;
  background-image: url('https://grainy-gradients.vercel.app/noise.svg');
  opacity: .05;
  pointer-events: none;
  z-index: 5;
  animation: noise 2s steps(10) infinite;
}
@keyframes noise {
  0% { transform: translate(0,0) }
  10% { transform: translate(-5%,-5%) }
  20% { transform: translate(-10%,5%) }
  30% { transform: translate(5%,-10%) }
  40% { transform: translate(-5%,15%) }
  50% { transform: translate(-10%,5%) }
  60% { transform: translate(15%,0) }
  70% { transform: translate(0,10%) }
  80% { transform: translate(-15%,0) }
  90% { transform: translate(10%,5%) }
  100% { transform: translate(5%,0) }
}
/* hero-scroll removed */
.hero-content { position: relative; z-index: 2; max-width: 900px; color: white; padding: 40px; }
.hero-badge { display: inline-block; background: var(--orange); color: white; padding: 6px 16px; border-radius: 100px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
.hero h1 { font-family: var(--font-display); font-size: clamp(48px, 7vw, 96px); line-height: 1.0; margin-bottom: 20px; }
.hero h1 em { color: var(--orange-light); font-style: italic; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.72); max-width: 580px; margin: 0 auto 40px; }

/* FEATURES STRIP */
.features-strip { background: var(--ink); border-top: 1px solid rgba(255,255,255,.05); padding: 30px 0; }
.features-strip .container { display: flex; justify-content: space-around; gap: 40px; }
.feat-item { display: flex; align-items: center; gap: 15px; color: white; }
.feat-icon { font-size: 28px; }
.feat-item h3 { font-size: 16px; font-weight: 700; margin: 0; color: white; }
.feat-item p { font-size: 13px; color: rgba(255,255,255,.6); margin: 0; }

.latest-products-section .products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.latest-products-section .products li {
  list-style: none !important;
  margin: 0 !important;
  width: 100% !important;
  float: none !important;
}

/* REVIEWS SECTION */
.section { padding: 100px 40px; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.review-card { background: white; border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--cream3); }
.stars { color: var(--orange); margin-bottom: 16px; font-size: 14px; }
.review-text { font-size: 17px; line-height: 1.6; color: var(--ink2); margin-bottom: 24px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 44px; height: 44px; background: var(--cream2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--ink); font-size: 13px; }
.reviewer-name { font-weight: 700; color: var(--ink); font-size: 15px; }
.reviewer-loc { font-size: 12px; color: var(--ink4); }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--ink) 0%, #1a140d 100%); padding: 80px 40px; text-align: center; color: white; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.7); margin-bottom: 32px; font-size: 18px; }
.btn-actions { display: flex; justify-content: center; gap: 16px; }

/* ═══════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════ */
.about-hero { background: var(--cream2); padding: 140px 40px 80px; text-align: center; }
.about-hero h1 { font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px); font-weight: 700; color: var(--ink); line-height: 1.05; }

.story-section { padding: 80px 40px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-text h2 { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--ink); margin-bottom: 24px; }
.story-img-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); height: auto; }
.story-img-wrap img { width: 100%; height: auto; display: block; object-fit: contain; }

.values-section { background: var(--cream2); padding: 80px 40px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card { background: white; border-radius: var(--radius-lg); padding: 32px; text-align: center; box-shadow: var(--shadow); }
.value-icon { font-size: 40px; margin-bottom: 20px; }
.value-card h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--ink3); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   CATERING PAGE
   ═══════════════════════════════════════════════ */
.catering-hero { position: relative; padding: 140px 40px; overflow: hidden; background: var(--dark); text-align: center; display: flex; align-items: center; justify-content: center; min-height: 60vh; }
.catering-hero-bg { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(18,12,6,.6) 0%, rgba(18,12,6,.9) 100%), url('../images/jerk-chicken-2.jpg') center/cover no-repeat; }
.catering-hero-content { position: relative; z-index: 1; max-width: 700px; }
.catering-hero h1 { font-family: var(--font-display); font-size: clamp(44px, 6vw, 76px); font-weight: 700; color: white; line-height: 1.0; margin-bottom: 16px; }
.catering-hero h1 em { color: var(--orange-light); font-style: italic; }
.catering-hero p { font-size: 18px; color: rgba(255,255,255,.7); margin: 0 auto 32px; line-height: 1.65; max-width: 520px; }


/* CATERING styles moved to assets/css/catering.css */

/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */
.contact-hero { background: var(--cream2); padding: 140px 40px 80px; text-align: center; }
.contact-hero h1 { font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px); font-weight: 700; color: var(--ink); }
.contact-hero p { font-size: 16px; color: var(--ink3); max-width: 500px; margin: 16px auto 0; }

.contact-info-strip { background: var(--dark2); padding: 60px 40px; color: white; }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-info-card { text-align: center; padding: 40px 32px; border-radius: var(--radius-lg); background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; height: 100%; }
.ci-icon { font-size: 32px; margin-bottom: 16px; }
.contact-info-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.contact-info-card p { font-size: 15px; color: rgba(255,255,255,.6); margin-bottom: 24px; flex-grow: 1; }

.contact-body-section { padding: 80px 40px; }
.contact-body-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.contact-form-wrap { background: white; border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); }
.hours-card, .find-card { background: white; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); margin-bottom: 20px; }
.card-title { font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 0; font-size: 14px; color: var(--ink3); border-bottom: 1px solid var(--cream3); }
.map-embed { height: 250px; border-radius: var(--radius); overflow: hidden; margin-top: 16px; }

/* ═══════════════════════════════════════════════
   CONTACT FORM 7 STYLING (Aggressive Override)
   ═══════════════════════════════════════════════ */
.wpcf7 {
    max-width: 100%;
}

.wpcf7-form p {
    margin-bottom: 20px !important;
}

.wpcf7-form label {
    display: block !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: var(--ink) !important;
    margin-bottom: 8px !important;
    font-family: var(--font-body) !important;
}

/* All text inputs */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea {
    width: 100% !important;
    padding: 14px 20px !important;
    background: var(--cream) !important;
    border: 1.5px solid var(--cream3) !important;
    border-radius: var(--radius) !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    color: var(--ink) !important;
    transition: all var(--transition) !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.wpcf7-form textarea {
    height: 150px !important;
    resize: vertical !important;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: var(--orange) !important;
    background: white !important;
    box-shadow: 0 4px 12px rgba(232, 89, 26, 0.08) !important;
}

/* Submit Button */
.wpcf7-submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--orange) !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 15px 40px !important;
    border: none !important;
    border-radius: 100px !important;
    cursor: pointer !important;
    transition: all var(--transition) !important;
    margin-top: 10px !important;
    width: auto !important;
    min-width: 180px !important;
    text-transform: none !important;
}

.wpcf7-submit:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow) !important;
}

/* Success/Error Notifications */
.wpcf7-response-output {
    margin: 25px 0 0 !important;
    padding: 15px 24px !important;
    border-radius: var(--radius-lg) !important;
    font-size: 14px !important;
    border: none !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}

.wpcf7-mail-sent-ok {
    background: #E8F5E9 !important;
    color: #2E7D32 !important;
    border-left: 4px solid #4CAF50 !important;
}

.wpcf7-validation-errors, 
.wpcf7-acceptance-missing,
.wpcf7-aborted {
    background: #FFEBEE !important;
    color: #C62828 !important;
    border-left: 4px solid #F44336 !important;
}

.wpcf7-not-valid-tip {
    color: #F44336 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    margin-top: 6px !important;
    display: block !important;
}

.wpcf7-spinner {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
}

/* ═══════════════════════════════════════════════
   BUTTONS & COMMONS
   ═══════════════════════════════════════════════ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 15px; padding: 13px 28px; border-radius: 100px; transition: all var(--transition); text-decoration: none; cursor: pointer; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: white; }
.btn-dark { background: var(--ink); color: white; border: 1.5px solid var(--ink); }
.btn-dark:hover { background: #000; border-color: #000; }
.btn-lg { padding: 16px 40px; font-size: 17px; }

.section-label { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.section-heading { font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 52px); font-weight: 700; color: var(--ink); line-height: 1.1; }
.section-head-center { text-align: center; margin-bottom: 48px; }

/* ═══════════════════════════════════════════════
   FOOTER (PREMIUM REDESIGN)
   ═══════════════════════════════════════════════ */
footer {
  background: #120C06;
  color: rgba(255, 255, 255, 0.7);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232, 89, 26, 0.3), transparent);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.4fr 1.2fr;
  gap: 40px;
  margin-bottom: 80px;
}

.footer-brand-col p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
}

.foot-logo-premium img {
  height: 54px;
  width: auto;
  margin-bottom: 24px;
  display: block;
}

/* Social Links */
.social-links-premium {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-4px);
  color: white;
  box-shadow: 0 10px 20px rgba(232, 89, 26, 0.2);
}

/* Footer Links Column */
.footer-links-col h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--orange);
  transform: translateX(5px);
}

/* Hours List */
.hours-list-premium {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hour-item span {
  white-space: nowrap;
}

.hour-item span:first-child {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Items */
.contact-items-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item .icon {
  font-size: 18px;
  opacity: 0.8;
}

.contact-item p, .contact-item a {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.contact-item a {
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--orange);
}

/* Footer Bottom */
.footer-bottom-premium {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal .legal-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: white;
}

/* Responsive Footer */
@media (max-width: 991px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-bottom-premium {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-legal .legal-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   MOBILE NAVIGATION & GLOBAL RESPONSIVENESS
   ═══════════════════════════════════════════════ */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
  z-index: 1100;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  transition: all 0.3s ease;
}
.nav-burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 991px) {
  .nav-container { padding: 0 20px; }
  .nav-burger { display: flex; }
  .cart-label { display: none; }
  .nav-cart-btn { padding: 10px !important; }
  
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #120C06;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding: 100px 40px;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  .nav-links.mobile-open { transform: translateY(0); }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links li a { font-size: 24px; font-weight: 700; width: 100%; display: block; color: white; }

  /* Centering Global Sections */
  .section, .hero-content, .contact-hero, .catering-hero-content, .cta-band .container {
    text-align: center;
    padding: 60px 20px;
  }

  .hero-actions, .btn-actions, .cta-btns-row {
    display: flex !important;
    justify-content: center;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center;
    gap: 12px !important;
  }

  .hero-actions .btn, .btn-actions .btn, .cta-btns-row a {
    width: auto !important;
    min-width: 160px;
    padding: 12px 24px !important;
    font-size: 15px !important;
  }

  /* Features Strip Horizontal */
  .features-strip .container {
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 0 10px !important;
  }
  .feat-item {
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
    flex: 1;
  }
  .feat-item h3 { font-size: 13px !important; margin: 0; }
  .feat-item p { font-size: 11px !important; margin: 0; }
  .feat-icon { margin: 0 !important; font-size: 20px !important; }

  /* Grid Fixes */
  .story-grid, .values-grid, .packages-grid, .contact-info-grid, 
  .contact-body-grid, .reviews-grid, .latest-products-section .products { 
    grid-template-columns: 1fr !important; 
    gap: 30px !important;
  }

  .contact-info-card {
    align-items: center;
    text-align: center;
  }

  .section-heading { font-size: 32px !important; }

  /* Contact Page Mobile Fixes */
  .contact-form-wrap, .hours-card, .find-card {
    padding: 24px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .map-embed iframe {
    width: 100% !important;
    height: 300px !important;
  }
  .hours-table {
    width: 100% !important;
    font-size: 14px !important;
  }
  .hours-table td {
    padding: 8px 0 !important;
  }

  /* Footer Mobile Centering */
  .footer-links-col {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-links-col h4 { margin-bottom: 20px; }
  .contact-item {
    justify-content: center !important;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 8px !important;
  }
  .hour-item {
    width: 100%;
    max-width: 280px;
  }
  .footer-brand-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand-col p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 576px) {
  .hero-content h1, .catering-hero h1, .contact-hero h1 { 
    font-size: 36px !important; 
  }
  .nav-logo img { height: 42px; }
  .footer-main-grid {
    grid-template-columns: 1fr !important;
    gap: 50px !important;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE POLISH & FIXES
   ═══════════════════════════════════════════════ */

/* Filter Bar Global Styles */
.menu-filter-bar {
  margin: 0 auto 40px;
  width: 100%;
}
.filter-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar for clean look */
}
.filter-inner::-webkit-scrollbar { display: none; }

.filter-btn {
  white-space: nowrap;
  padding: 10px 24px;
  background: white;
  border: 1px solid var(--cream3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink2);
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: white; box-shadow: 0 4px 12px rgba(232, 89, 26, 0.2); }

@media (max-width: 768px) {
  .container { padding: 0 20px !important; }
  section { padding: 60px 0 !important; }
  
  .section-heading { font-size: 28px !important; }
  .hero h1 { font-size: 42px !important; }
  
  /* Filter bar centering adjustment for mobile */
  .filter-inner {
    justify-content: flex-start;
    padding-left: 5px;
    padding-right: 5px;
  }

  /* Fix for overflowing images/content */
  img { max-width: 100%; height: auto; }
  
  /* Buttons stacking on mobile */
  .btn-actions, .hero-actions {
    flex-direction: column !important;
    width: 100%;
  }
  .btn-actions .btn, .hero-actions .btn {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px !important; }
  .section-heading { font-size: 26px !important; }
  .hero-sub { font-size: 15px !important; }
  
  .review-card { padding: 25px !important; }
  .footer-main-grid { gap: 40px !important; }
}








.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-block;
  text-align: center;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}
.btn-block { display: block; width: 100%; }


