/* ==============================
   PIPPO PIZZA - Style Sheet
   ============================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  color: #111;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* --- Logo images --- */
.site-logo-img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 50%;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  border-radius: 50%;
}

/* --- Container --- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-black {
  background: #111111;
  color: #fff;
  border: 2px solid #111111;
}
.btn-black:hover { background: #2a2a2a; border-color: #2a2a2a; }

.btn-outline {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.25); border-color: #fff; }

.btn-outline-sm {
  background: #fff;
  color: #111;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-outline-sm:hover { border-color: #bbb; }

.btn-large { padding: 14px 28px; font-size: 17px; }

.mt-16 { margin-top: 16px; }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  height: 84px;
  transition: box-shadow 0.2s;
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 84px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #1f1f1f;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: #E53913; }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Lang switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  font-size: 14px;
  font-weight: 600;
  color: #888;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.lang-btn.active { color: #111; }
.lang-btn:hover { color: #111; }
.lang-sep { color: #ccc; font-size: 12px; }

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  padding: 16px 24px 24px;
  border-top: 1px solid #ebebeb;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-nav-drawer.open { display: flex; }
.mobile-nav-drawer .nav-link {
  font-size: 17px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav-drawer .nav-link:last-of-type { border-bottom: none; }
.mobile-nav-drawer .btn { margin-top: 8px; width: 100%; }

/* ========== HERO ========== */
.hero-section {
  position: relative;
  height: 100svh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  --media-object-fit: cover;
}
.hero-video video,
.hero-video::part(video) {
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-container {
  display: flex;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
  padding: 0 20px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-body {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: #1a1a1a;
  border: none;
  font-weight: 600;
}
.btn-white:hover {
  background: #f0f0f0;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  font-weight: 500;
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ========== BRAND INTRO ========== */
.brand-intro {
  padding: 72px 0 64px;
  background: #fff;
}
.text-center { text-align: center; }

.brand-intro-name {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.brand-intro-tagline {
  font-size: 18px;
  font-weight: 400;
  color: #666;
}

/* ========== GALLERY ========== */
.gallery-section {
  padding: 0 0 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #f0f0f0;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* Storefront location tags */
.storefront-item {
  position: relative;
}
.storefront-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  letter-spacing: 0.01em;
}


/* ========== CATERING PROMO ========== */
.catering-section {
  padding: 80px 0;
  background: #fff;
}

.catering-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
}

.catering-card-img {
  overflow: hidden;
}

.catering-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catering-card-pattern {
  overflow: hidden;
}

.catering-card-pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catering-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 56px 56px 48px;
}

.catering-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 12px;
}

.catering-heading {
  font-size: 28px;
  font-weight: 600;
  color: #111;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.catering-body {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 400px;
}

.catering-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: transparent;
  color: #111;
  border: 1px solid #ddd;
}
.btn-outline-light:hover {
  border-color: #111;
  background: transparent;
}

/* ========== LOCATION PROMO ========== */
.promo-section {
  padding: 100px 0 80px;
}

.promo-heading {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ========== SPOTLIGHT PRODUCT ========== */
.spotlight-section {
  padding: 72px 0 0;
  background: #fff;
}

.spotlight-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.spotlight-img {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
}
.spotlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  width: fit-content;
}
.spotlight-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #06C167;
  flex-shrink: 0;
}

.spotlight-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.spotlight-desc {
  font-size: 16px;
  color: #545454;
  line-height: 1.6;
  max-width: 420px;
}

.spotlight-content .btn-spotlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 500px;
  background: #000;
  color: #fff;
  border: none;
  width: fit-content;
  margin-top: 8px;
  transition: background 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.spotlight-content .btn-spotlight:hover {
  background: #333;
}

/* ========== FEATURED PRODUCTS ========== */
.featured-section {
  padding: 80px 0;
  background: #fff;
}

.featured-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.featured-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
}

.view-menu-link {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.view-menu-link:hover { color: #E53913; }

.featured-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -48px;
  padding: 0 48px 8px;
}
.featured-scroll::-webkit-scrollbar { display: none; }

.featured-cards {
  display: flex;
  gap: 16px;
  width: max-content;
}

.feat-card {
  width: 240px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
  overflow: visible;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.feat-card-img {
  width: 100%;
  height: 240px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  position: relative;
}
.feat-card-img img { width: 100%; height: 100%; object-fit: cover; }

/* Real product photos have transparent backgrounds  - give them a warm cream backdrop */
.feat-card-img--round {
  background: #faf0e6;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feat-card-img--round img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  object-position: center;
}

.feat-card-body {
  padding: 14px 16px 16px;
}
.feat-card-name {
  font-size: 17px;
  font-weight: 600;
  color: #111;
}

.feat-card-btn {
  position: absolute;
  bottom: 56px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  color: #111;
  line-height: 1;
  transition: all 0.2s;
  text-decoration: none;
}
.feat-card-btn:hover {
  background: #E53913;
  color: #fff;
  box-shadow: 0 4px 12px rgba(229,57,19,0.35);
}

.featured-footer {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* ========== REVIEWS ========== */
.reviews-wrapper {
  padding: 32px 8px;
}

.reviews-section {
  background: #dedede;
  border-radius: 24px;
  width: 100%;
}

.reviews-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 64px 0 48px;
}

.reviews-heading {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  text-align: center;
  padding: 0 48px;
}

.reviews-scroll-wrap {
  position: relative;
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a1a1a;
  transition: all 0.2s;
  opacity: 0;
  pointer-events: none;
}
.reviews-scroll-wrap:hover .reviews-arrow {
  opacity: 1;
  pointer-events: auto;
}
.reviews-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  transform: translateY(-50%) scale(1.05);
}
.reviews-arrow--left { left: 16px; }
.reviews-arrow--right { right: 16px; }
.reviews-arrow.hidden { display: none; }

.reviews-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 48px 8px;
  scroll-behavior: smooth;
}
.reviews-scroll::-webkit-scrollbar { display: none; }

.review-card {
  display: flex;
  padding: 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  min-width: 240px;
  max-width: 270px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.review-card-inner {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.review-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-stars {
  display: flex;
  gap: 3px;
  font-size: 18px;
  color: #1a1a1a;
}

.review-text-wrap {
  position: relative;
}

.review-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-toggle {
  margin-top: 8px;
  font-size: 12px;
  color: #555;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.review-toggle:hover {
  color: #1a1a1a;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-name {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin: 0;
}

/* ========== FAQ ========== */
.faq-section {
  padding: 100px 0;
  background: #fff;
}

.faq-container h2 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}
.faq-item:first-child { border-top: 1px solid #e5e5e5; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 0 24px;
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer a { color: inherit; font-weight: 600; text-decoration: underline; }
.faq-answer a:hover { opacity: 0.7; }

/* ========== LOCATIONS ========== */
.locations-section {
  padding: 80px 0 100px;
  background: #fff;
}

.locations-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.locations-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
}

.locations-nav-arrows {
  display: flex;
  gap: 8px;
}
.loc-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.loc-arrow:hover { background: #e8e8e8; border-color: #ccc; }

.loc-tabs-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 32px;
}
.loc-tabs-wrapper::-webkit-scrollbar { display: none; }

.loc-tabs {
  display: flex;
  gap: 8px;
  width: max-content;
  padding-bottom: 2px;
}

.loc-tab {
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  background: #f5f5f5;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.loc-tab:hover { background: #e8e8e8; }
.loc-tab.active {
  background: #fff;
  border-color: #111;
  color: #111;
  font-weight: 600;
}

/* Location Cards */
.loc-card-area {
  position: relative;
}

.loc-card {
  display: none;
  background: #f5f5f5;
  border-radius: 20px;
  overflow: hidden;
  grid-template-columns: 40% 60%;
  min-height: 440px;
}
.loc-card.active { display: grid; }

.loc-map {
  overflow: hidden;
  min-height: 340px;
  background: #e0e0e0;
}
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.loc-details {
  padding: 28px 32px 0;
  display: flex;
  flex-direction: column;
}

/* View toggle system */
.loc-view { display: none; flex: 1; flex-direction: column; }
.loc-view.active { display: flex; }

/* Info view header: brand name + location name + directions btn */
.loc-info-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.loc-brand-name {
  font-size: 13px;
  color: #888;
  font-weight: 400;
  margin-bottom: 2px;
}
.loc-name {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
}
.loc-directions-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}
.loc-directions-btn:hover { border-color: #aaa; background: #fafafa; }

.loc-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 20px;
}

/* Info columns: address + contacts side by side */
.loc-info-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.loc-info-block { display: flex; flex-direction: column; gap: 8px; }
.loc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}
.loc-info-block p {
  font-size: 14px;
  color: #111;
  line-height: 1.6;
}
.loc-info-block a { color: #111; }
.loc-info-block a:hover { text-decoration: underline; color: #E53913; }

/* Hours view */
.loc-hours-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 16px;
}
.loc-hours-tab {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.loc-hours-tab:hover { color: #111; }
.loc-hours-tab.active {
  color: #111;
  font-weight: 600;
  border-bottom-color: #111;
}

.loc-hours-schedule {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.loc-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #ebebeb;
}
.loc-hours-row:last-child { border-bottom: none; }
.loc-hours-row span:first-child { font-weight: 500; }
.loc-hours-row.today {
  font-weight: 700;
  color: #111;
  background: #eee;
  margin: 0 -8px;
  padding: 9px 8px;
  border-radius: 6px;
}

/* Card footer bar */
.loc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 16px 0 20px;
  border-top: 1px solid #e0e0e0;
}
.loc-footer-today {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.loc-footer-today-hours {
  font-weight: 600;
  color: #111;
}
.loc-footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.loc-toggle-view {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  transition: color 0.2s;
}
.loc-toggle-view:hover { color: #111; }

.loc-order-btn {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #06C167;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.loc-order-btn:hover {
  background: #05a357;
  color: #fff;
}
.loc-order-btn--disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ========== TIKTOK ========== */
.tiktok-section {
  padding: 80px 0;
  background: #fff;
}
.tiktok-header {
  text-align: center;
  margin-bottom: 36px;
}
.tiktok-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  background: #f5f5f5;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
  transition: background 0.2s;
}
.tiktok-badge:hover {
  background: #eee;
}
.tiktok-icon {
  flex-shrink: 0;
}
.tiktok-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.tiktok-subtitle {
  font-size: 15px;
  color: #888;
}
.tiktok-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -48px;
  padding: 0 48px 8px;
}
.tiktok-scroll::-webkit-scrollbar { display: none; }
.tiktok-cards {
  display: flex;
  gap: 16px;
  width: max-content;
}
.tiktok-card {
  width: 260px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  text-decoration: none;
  background: #000;
}
.tiktok-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}
.tiktok-card-img {
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
}
.tiktok-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.tiktok-card:hover .tiktok-card-img img {
  transform: scale(1.03);
}
.tiktok-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.tiktok-card:hover .tiktok-card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.tiktok-card-skeleton {
  width: 260px;
  flex-shrink: 0;
  border-radius: 16px;
  aspect-ratio: 9/16;
  background: linear-gradient(110deg, #f0f0f0 30%, #e0e0e0 50%, #f0f0f0 70%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 768px) {
  .tiktok-section { padding: 56px 0; }
  .tiktok-scroll { margin: 0 -20px; padding: 0 20px 8px; }
  .tiktok-card, .tiktok-card-skeleton { width: 220px; }
}

/* ========== FOOTER ========== */
.site-footer {
  background: #f5f5f5;
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-desc {
  font-size: 15px;
  color: #666;
  margin-top: 12px;
  line-height: 1.5;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8e8e8;
  color: #333;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: #111;
  color: #fff;
}

.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 15px;
  color: #111;
  transition: color 0.2s;
}
.footer-col a:hover { color: #E53913; text-decoration: underline; }

.footer-cta-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 20px 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 14px;
  color: #666;
  transition: color 0.2s;
}
.footer-legal a:hover { color: #111; }

.footer-copy {
  font-size: 14px;
  color: #888;
}

.powered-by-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #666;
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  padding: 8px 18px;
  border-radius: 24px;
  transition: all 0.2s;
}
.powered-by-link:hover { background: #eee; color: #111; border-color: #ccc; }
.powered-by-link strong { font-weight: 700; }
.powered-by-logo { height: 28px; width: auto; display: inline-block; vertical-align: middle; margin-left: 2px; }

/* ========== MOBILE STICKY CTA BAR ========== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 16px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s;
}
.mobile-cta-left {
  background: #f0f0f0;
  color: #111;
}
.mobile-cta-left:hover { background: #e5e5e5; }
.mobile-cta-right {
  background: #111111;
  color: #fff;
}
.mobile-cta-right:hover { background: #2a2a2a; }

/* ========== PLACEHOLDER IMAGES ========== */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #f0ebe4 0%, #e8ddd3 50%, #ddd2c6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder--tall {
  min-height: 400px;
}

.img-placeholder--product {
  min-height: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #faf0e6 0%, #f0e4d6 100%);
  border-radius: 0;
}

.hero-placeholder {
  background: linear-gradient(135deg, #2c1e14 0%, #4a3228 40%, #3a2820 100%) !important;
}

/* ========== RESPONSIVE - TABLET (< 1024px) ========== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .header-inner { padding: 0 32px; gap: 20px; }
  .header-nav { gap: 20px; }
  .nav-link { font-size: 14px; }
  .hero-headline { font-size: 36px; }
  .brand-intro-name { font-size: 32px; }
  .spotlight-card { gap: 32px; }
  .spotlight-title { font-size: 28px; }
  .catering-card { grid-template-columns: 1fr 1fr; }
  .catering-heading { font-size: 24px; }
  .reviews-scroll { padding: 0 32px 8px; }
  .reviews-heading { font-size: 26px; padding: 0 32px; }
  .footer-top { grid-template-columns: 1fr 1.5fr; gap: 32px; }
}

/* ========== RESPONSIVE - MOBILE (< 768px) ========== */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; gap: 12px; }

  .header-nav { display: none; }
  .header-cta { display: none; }
  .header-right { margin-left: auto; }
  .mobile-menu-toggle { display: flex; }

  .mobile-cta-bar { display: flex; }

  /* Compensate for sticky bottom bar */
  body { padding-bottom: 80px; }

  /* Hero */
  .hero-section { height: 100svh; min-height: 400px; padding: 80px 0 60px; }
  .hero-headline { font-size: 28px; }
  .hero-eyebrow { font-size: 12px; }
  .hero-body { font-size: 15px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; }

  /* Brand intro */
  .brand-intro { padding: 60px 0; }
  .brand-intro-name { font-size: 26px; }
  .brand-intro-tagline { font-size: 16px; }

  /* Spotlight */
  .spotlight-section { padding: 48px 0 0; }
  .spotlight-card { grid-template-columns: 1fr; gap: 24px; }
  .spotlight-img { aspect-ratio: 1/1; }
  .spotlight-content { padding: 0; }
  .spotlight-title { font-size: 26px; }
  .spotlight-desc { font-size: 15px; }
  .spotlight-content .btn-spotlight { width: 100%; justify-content: center; }

  /* Gallery */
  .gallery-section { padding: 0 0 56px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Catering */
  .catering-section { padding: 40px 0; }
  .catering-card { grid-template-columns: 1fr; min-height: auto; }
  .catering-card-img { height: 220px; }
  .catering-card-pattern { height: 200px; }
  .catering-card-content { padding: 32px 28px; text-align: center; align-items: center; }
  .catering-heading { font-size: 24px; }
  .catering-body { font-size: 15px; }
  .catering-cta-row { justify-content: center; }

  /* Promo */
  .promo-section { padding: 60px 0 56px; }
  .promo-heading { font-size: 22px; margin-bottom: 36px; }

  /* Featured */
  .featured-section { padding: 60px 0; }
  .featured-header { margin-bottom: 24px; }
  .featured-header h2 { font-size: 24px; }
  .featured-scroll { margin: 0 -20px; padding: 0 20px 8px; }
  .feat-card { width: 200px; }
  .feat-card-img { height: 200px; }

  /* Reviews */
  .reviews-wrapper { padding: 24px 8px; }
  .reviews-inner { padding: 32px 0 12px; }
  .reviews-scroll { padding: 0 16px 8px; gap: 12px; }
  .review-card { min-width: 220px; max-width: 260px; padding: 18px; }
  .reviews-heading { font-size: 22px; padding: 0 16px; }
  .review-stars { font-size: 16px; }
  .review-text { font-size: 13px; }
  .review-card-inner { gap: 18px; }
  .reviews-arrow { width: 32px; height: 32px; opacity: 1; pointer-events: auto; }

  /* FAQ */
  .faq-section { padding: 60px 0; }
  .faq-container h2 { font-size: 24px; margin-bottom: 36px; }
  .faq-question { font-size: 17px; padding: 20px 0; }
  .faq-answer { font-size: 15px; }

  /* Locations */
  .locations-section { padding: 60px 0 80px; }
  .locations-header { margin-bottom: 20px; }
  .locations-header h2 { font-size: 24px; }
  .loc-card { grid-template-columns: 1fr; }
  .loc-card.active { display: flex; flex-direction: column; }
  .loc-map { min-height: 200px; }
  .loc-details { padding: 20px 16px 0; }
  .loc-info-header { flex-direction: column; gap: 10px; }
  .loc-name { font-size: 22px; }
  .loc-info-cols { grid-template-columns: 1fr; gap: 20px; }
  .loc-hours-tab { padding: 8px 14px; font-size: 13px; }
  .loc-card-footer { flex-direction: column; gap: 12px; align-items: flex-start; padding: 14px 0 16px; }
  .loc-footer-right { width: 100%; justify-content: space-between; }
  .loc-order-btn { flex: 1; text-align: center; justify-content: center; }

  /* Footer */
  .site-footer { padding: 48px 0 0; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer-nav-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }

  .footer-nav-cols { grid-template-columns: 1fr; }
}
