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

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Inter', 'Oswald', sans-serif;
  background: #111;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ===== UTILS ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #222;
  transition: background 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(17, 17, 17, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo-img {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
}

.header-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.header-logo-text {
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  color: #FFC72C;
  line-height: 1;
}

.header-logo-text span {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  margin-top: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header {
  display: none;
  align-items: center;
  gap: 8px;
  background: #E31E24;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-header:hover,
.btn-header:focus-visible {
  background: #c9191e;
  transform: scale(1.02);
  outline: 2px solid #FFC72C;
  outline-offset: 2px;
}

.btn-header svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.halal-badge-header {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 50%;
}

@media (min-width: 640px) {
  .btn-header {
    display: inline-flex;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #111;
  padding: 80px 16px 40px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(227, 30, 36, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 199, 44, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-logo {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  background: transparent;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.hero-logo .halal-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
}

.hero-tagline {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 8vw, 80px);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
  color: #fff;
}

.hero-title .accent {
  color: #E31E24;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #E31E24;
  color: #fff;
  padding: 18px 36px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(227, 30, 36, 0.45);
}

.hero-cta:hover,
.hero-cta:focus-visible {
  background: #c9191e;
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(227, 30, 36, 0.55);
  outline: 2px solid #FFC72C;
  outline-offset: 2px;
}

.hero-cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ===== MARQUEE ===== */
.marquee-wrapper {
  background: #E31E24;
  padding: 16px 0;
  transform: rotate(-2deg) scale(1.05);
  margin: -20px 0 40px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

.marquee-item {
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 4vw, 32px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.marquee-item::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFC72C;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== ENGAGEMENTS ===== */
.engagements {
  padding: 80px 16px;
  background: #111;
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.engagement-card {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.engagement-card:hover {
  background: #222;
  border-color: #E31E24;
  transform: translateY(-4px);
}

.engagement-icon {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.engagement-halal-icon,
.engagement-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 480px) {
  .engagement-icon {
    width: 110px;
    height: 110px;
  }
}

.engagement-title {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #fff;
}

.engagement-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #999;
  line-height: 1.5;
}

/* ===== MENU SECTION ===== */
.menu-section {
  padding: 80px 0 100px;
  background: #0a0a0a;
  position: relative;
}

.menu-tabs-wrapper {
  position: sticky;
  top: 73px;
  left: 0;
  right: 0;
  z-index: 40;
  background: #111;
  border-bottom: 2px solid #E31E24;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.menu-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 1200px;
  margin: 0 auto;
}

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

.menu-tab {
  flex: 1 0 auto;
  min-width: 120px;
  padding: 18px 20px;
  background: #111;
  color: #888;
  border: none;
  border-bottom: 4px solid transparent;
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-align: center;
}

.menu-tab:hover,
.menu-tab:focus-visible {
  color: #fff;
  background: #1a1a1a;
  outline: none;
  box-shadow: inset 0 -4px 0 #FFC72C;
}

.menu-tab.active {
  color: #FFC72C;
  background: #1a1a1a;
  border-bottom-color: #FFC72C;
}

.menu-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px 0;
}

.menu-category {
  display: none;
  animation: fadeIn 0.4s ease;
}

.menu-category.active {
  display: block;
}

.sub-cat-title {
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFC72C;
  background: #111;
  padding: 14px 16px;
  margin: 32px 0 16px;
  border-left: 4px solid #E31E24;
  border-radius: 0 4px 4px 0;
}

.sub-cat-title:first-child {
  margin-top: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 8px;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.product-card {
  animation-delay: calc(var(--index, 0) * 0.05s);
}

.product-card:hover,
.product-card:focus-visible {
  background: #222;
  border-color: #E31E24;
  transform: translateY(-4px) scale(1.01);
  outline: none;
}

.product-card:focus-visible {
  box-shadow: 0 0 0 2px #FFC72C;
}

.product-card:active {
  transform: scale(0.98);
}

.product-image {
  width: 100%;
  height: 220px;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #222;
  border-radius: 8px 8px 0 0;
  padding: 8px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-image.placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}

.product-image.placeholder::after {
  content: 'O\'MEETING';
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: #333;
}

.product-info {
  padding: 16px;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  flex: 1;
}

.product-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  color: #111;
  background: #FFC72C;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.3;
}

.product-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #999;
  line-height: 1.5;
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 80px 16px;
  background: #111;
}

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

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 1;
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.gallery-item:hover {
  transform: scale(1.03);
  border-color: #E31E24;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
}

.gallery-item.empty::after {
  content: 'O\'MEETING';
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #333;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 80px 16px;
  background: #0a0a0a;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.contact-card.full-width {
  grid-column: 1 / -1;
}

.contact-card:hover {
  border-color: #E31E24;
  transform: translateY(-4px);
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: #E31E24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.contact-title {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
}

.contact-info {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #aaa;
  line-height: 1.6;
}

.contact-info a {
  color: #FFC72C;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: #fff;
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  max-width: 260px;
  margin: 0 auto;
}

.contact-hours span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px solid #222;
}

.contact-hours span:last-child {
  border-bottom: none;
}

.contact-hours strong {
  color: #FFC72C;
  font-weight: 600;
  min-width: 90px;
}

.contact-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: 2px;
  color: #FFC72C;
  margin: 16px 0;
  display: block;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #E31E24;
  color: #fff;
  padding: 16px 32px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(227, 30, 36, 0.35);
  margin-top: 8px;
}

.btn-call:hover,
.btn-call:focus-visible {
  background: #c9191e;
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(227, 30, 36, 0.5);
  outline: 2px solid #FFC72C;
  outline-offset: 2px;
}

.btn-call svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #000;
  padding: 48px 16px 120px;
  text-align: center;
}

.footer-logo {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: transparent;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.4));
}

.footer-name {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  color: #FFC72C;
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 24px;
}



/* ===== PRÉPARER BUTTON ===== */
.preparer-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #111;
  padding: 0;
  border-top: 1px solid #222;
}

.preparer-inner {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.btn-preparer {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: #E31E24;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(227, 30, 36, 0.45);
  text-align: center;
  line-height: 1;
}

.btn-preparer:hover,
.btn-preparer:focus-visible {
  background: #c9191e;
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(227, 30, 36, 0.55);
  outline: 2px solid #FFC72C;
  outline-offset: 2px;
}

.btn-preparer:active {
  transform: scale(0.97);
}

/* ===== HEALTH FOOTER ===== */
.health-footer {
  background: #0a0a0a;
  padding: 8px 16px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: #666;
  line-height: 1.5;
  border-top: 1px solid #1a1a1a;
  width: 100%;
}

.health-footer a {
  color: #888;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.health-footer a:hover {
  color: #E31E24;
}

/* ===== FINAL SCREEN ===== */
.final-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 100px;
  text-align: center;
  background: #111;
  overflow-y: auto;
}

.final-screen.active {
  display: flex;
}

.final-icon svg {
  width: 64px;
  height: 64px;
  fill: #E31E24;
  margin-bottom: 24px;
}

.final-screen h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.final-screen h2 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #999;
  margin-bottom: 32px;
}

.final-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  letter-spacing: 3px;
  color: #FFC72C;
  margin-bottom: 32px;
  line-height: 1;
  text-shadow: 0 4px 24px rgba(255, 199, 44, 0.2);
}

.btn-return-menu {
  display: inline-block;
  margin-top: 24px;
  background: none;
  border: 2px solid #333;
  border-radius: 8px;
  color: #888;
  padding: 14px 36px;
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-return-menu:hover,
.btn-return-menu:focus-visible {
  border-color: #E31E24;
  color: #fff;
  outline: 2px solid #FFC72C;
  outline-offset: 2px;
}

/* ===== DRIPPING FONT ===== */
.dripping-font {
  font-family: 'Nosifer', cursive;
  font-weight: 400;
  letter-spacing: 4px;
  color: #FFC72C;
  text-shadow: 0 4px 0 #E31E24, 0 8px 16px rgba(227, 30, 36, 0.4);
  line-height: 1.2;
}

/* ===== PRODUCT DETAIL SCREEN ===== */
.product-detail-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 100px;
  text-align: center;
  background: #111;
  overflow-y: auto;
}

.product-detail-screen.active {
  display: flex;
}

.product-detail-image {
  width: 220px;
  height: 220px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}

.product-detail-name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(24px, 5vw, 40px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}

.product-detail-message {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  color: #aaa;
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.4;
}

.product-detail-message strong {
  color: #FFC72C;
}

.product-detail-phone {
  font-family: 'Nosifer', cursive;
  font-size: clamp(36px, 8vw, 64px);
  letter-spacing: 4px;
  color: #FFC72C;
  margin-bottom: 32px;
  line-height: 1.2;
  text-shadow: 0 4px 0 #E31E24, 0 8px 24px rgba(227, 30, 36, 0.4);
  transform: rotate(-2deg);
}

/* ===== CHEESE DRIP TRANSITION (fromage fondu) ===== */
.cheese-transition-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cheese-transition-overlay.is-active {
  opacity: 1;
}

.cheese-drip-goo {
  filter: url(#cheese-goo-filter);
}

.cheese-drip-blob {
  fill: var(--cheese-color, #E3A524);
}

.cheese-drip-drop {
  fill: var(--cheese-color, #E3A524);
  transform-origin: center top;
}

.cheese-drip-shine {
  fill: rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .cheese-transition-overlay {
    transition: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 480px) {
  .product-name { font-size: 17px; }
  .product-price { font-size: 17px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .engagements-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
  /* Header compact */
  .header-inner { padding: 10px 12px; }
  .header-logo-img { width: 40px; height: 40px; }
  .header-logo-text { font-size: 18px; }
  .header-logo-text span { font-size: 8px; letter-spacing: 1px; }
  .halal-badge-header { width: 32px; height: 32px; }
  .header-actions { gap: 8px; }

  /* Hero réduit */
  .hero { padding: 70px 12px 30px; }
  .hero-logo { width: 130px; height: 130px; margin-bottom: 16px; }
  .hero-logo .halal-badge { width: 30px; height: 30px; }
  .hero-tagline { font-size: 11px; letter-spacing: 3px; }
  .hero-subtitle { font-size: 14px; margin-bottom: 24px; }
  .hero-cta { padding: 14px 28px; font-size: 14px; width: 100%; justify-content: center; }

  /* Section titles */
  .section-title { font-size: clamp(24px, 7vw, 32px); margin-bottom: 24px; }

  /* Marquee */
  .marquee-wrapper { padding: 12px 0; margin: -16px 0 30px; }
  .marquee-item { font-size: 16px; padding: 0 24px; }

  /* Engagements */
  .engagements { padding: 50px 12px; }
  .engagements-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .engagement-card { padding: 20px 16px; }


  .engagement-title { font-size: 16px; }
  .engagement-text { font-size: 13px; }

  /* Menu */
  .menu-section { padding: 50px 0 80px; }
  .menu-content { padding: 24px 12px 0; }
  .menu-tab { min-width: 100px; padding: 14px 14px; font-size: 12px; letter-spacing: 1px; }
  .menu-tabs-wrapper { top: 61px; }
  .sub-cat-title { font-size: 14px; padding: 12px 12px; margin: 24px 0 12px; }

  /* Product cards */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-image { height: 140px; padding: 6px; }
  .product-info { padding: 10px; }
  .product-name { font-size: 13px; }
  .product-desc { font-size: 11px; }
  .product-price { font-size: 13px; padding: 3px 8px; }

  /* Gallery */
  .gallery-section { padding: 50px 12px; }
  .gallery-grid { gap: 8px; }

  /* Contact */
  .contact-section { padding: 50px 12px; }
  .contact-card { padding: 24px 20px; }
  .contact-icon { width: 48px; height: 48px; }
  .contact-icon svg { width: 24px; height: 24px; }
  .contact-title { font-size: 17px; }
  .contact-phone { font-size: 24px; }
  .btn-call { padding: 14px 24px; font-size: 13px; width: 100%; justify-content: center; }
  .contact-hours { max-width: 100%; }
  .contact-hours strong { min-width: 70px; font-size: 13px; }
  .contact-hours span { font-size: 13px; }

  /* Footer */
  .site-footer { padding: 32px 12px 100px; }
  .footer-logo { width: 80px; height: 80px; }
  .footer-name { font-size: 24px; }


  /* Preparer */
  .preparer-inner { padding: 0 12px 6px; }
  .btn-preparer { padding: 14px 18px; font-size: 18px; letter-spacing: 3px; }

  /* Final screen */
  .final-screen { padding: 30px 16px 90px; }
  .final-screen h1 { font-size: 22px; }
  .final-screen h2 { font-size: 14px; }
  .final-phone { font-size: 36px; }
  .final-icon svg { width: 48px; height: 48px; }

  /* Product detail */
  .product-detail-screen { padding: 30px 16px 90px; }
  .product-detail-image { width: 170px; height: 170px; }
  .product-detail-name { font-size: 22px; }
  .product-detail-message { font-size: 16px; }
  .product-detail-phone { font-size: 32px; }



  /* Health footer */
  .health-footer { font-size: 9px; padding: 6px 12px; }

  /* Return button */
  .btn-return-menu { padding: 12px 28px; font-size: 13px; }
}

@media (min-width: 640px) {
  .header-inner { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .engagements { padding: 100px 24px; }
  .menu-content { padding: 48px 24px 0; }
  .gallery-section { padding: 100px 24px; }
  .contact-section { padding: 100px 24px; }
  .site-footer { padding: 60px 24px 120px; }
}

@media (min-width: 768px) {
  .hero-logo { width: 180px; height: 180px; }
  .final-phone { font-size: 56px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 24px; }
}
