/* ===================================================
   PIZZA CLUB SAINT-PIERRE — Main Stylesheet
   =================================================== */

:root {
  --red: #FF0000;
  --dark-red: #c62828;
  --darker-red: #8b0000;
  --light-red: #ffebee;
  --white: #ffffff;
  --off-white: #fafafa;
  --gray-light: #f5f5f5;
  --gray: #9e9e9e;
  --dark: #1a1a1a;
  --text: #2c2c2c;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================================================
   TYPOGRAPHY
   =================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.section-title {
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-desc {
  color: #555;
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--dark-red);
  border-color: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,0,0,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,0,0,0.3);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* ===================================================
   LAYOUT
   =================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.section-center { text-align: center; }
.section-center .section-desc { margin: 0 auto; }

/* ===================================================
   HEADER
   =================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
}

.logo-text .tagline {
  font-size: 0.65rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: var(--transition);
}

.nav a:hover, .nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: var(--transition);
}
.header-phone:hover { color: var(--red); }
.header-phone i { color: var(--red); }

.btn-order-header {
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--red); padding-left: 0.5rem; }
.mobile-menu a i { width: 20px; color: var(--red); font-size: 0.9rem; }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0000 0%, #2d0000 40%, #1a1a1a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,0,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(198,40,40,0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(255,0,0,0.08) 0%, transparent 40%);
}

.hero-pizza-bg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  aspect-ratio: 1;
  opacity: 0.12;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,0,0,0.2);
  border: 1px solid rgba(255,0,0,0.4);
  color: #ff6b6b;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,0,0,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(255,0,0,0); }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero h1 span { color: var(--red); }

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll i { font-size: 1rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===================================================
   ANNOUNCEMENT BAR
   =================================================== */
.announcement {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  position: relative;
  z-index: 999;
}

.announcement i { margin-right: 0.4rem; }

.announcement a {
  color: var(--white);
  text-decoration: underline;
  margin-left: 0.5rem;
}

/* ===================================================
   SECTION: NOTRE CARTE
   =================================================== */
.carte { background: var(--white); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--gray-light);
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.category-card:hover {
  border-color: var(--red);
  background: var(--light-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--dark-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}

.category-card:hover .category-icon {
  transform: scale(1.1);
}

.category-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.carte-feature {
  background: linear-gradient(135deg, var(--dark) 0%, #2d0000 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.carte-feature-text h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.carte-feature-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}

.carte-feature-text .price-info {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.price-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-badge .amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}

.price-badge .desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.carte-feature-visual {
  text-align: center;
}

.pizza-svg-large {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

/* ===================================================
   SECTION: FORMULES
   =================================================== */
.formules { background: var(--gray-light); }

.formules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.formule-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.formule-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.formule-card.featured {
  border: 2px solid var(--red);
}

.formule-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}

.formule-header {
  padding: 2rem 1.75rem 1rem;
  background: linear-gradient(135deg, var(--red), var(--dark-red));
  text-align: center;
}

.formule-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 auto 1rem;
}

.formule-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.formule-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-heading);
}

.formule-price sup { font-size: 1rem; }
.formule-price small { font-size: 0.9rem; font-weight: 400; opacity: 0.8; }

.formule-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.formule-includes {
  margin-bottom: 1.5rem;
}

.formule-includes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.formule-includes li:last-child { border-bottom: none; }
.formule-includes i { color: var(--red); font-size: 0.85rem; width: 16px; }

/* ===================================================
   SECTION: LIVRAISON
   =================================================== */
.livraison { background: var(--white); }

.livraison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}

.livraison-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.livraison-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--gray-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--red);
  transition: var(--transition);
}

.livraison-feature:hover {
  background: var(--light-red);
  transform: translateX(4px);
}

.livraison-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--red), var(--dark-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.livraison-feature-text h4 {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.livraison-feature-text p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
}

.livraison-visual {
  background: linear-gradient(135deg, #1a0000, #2d0000);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}

.livraison-visual h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.zone-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.zone-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
}

.zone-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
}

.zone-name i { color: var(--red); }

.zone-price {
  font-weight: 700;
  color: var(--red);
  font-size: 0.95rem;
}

.zone-price.free { color: #4caf50; }

.hours-info {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
}

.hours-info h4 {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-family: var(--font-main);
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.hour-row .day { color: rgba(255,255,255,0.6); }
.hour-row .time { color: var(--white); font-weight: 600; }
.hour-row .closed { color: #f44336; }

/* ===================================================
   SECTION: CONTACT
   =================================================== */
.contact { background: var(--gray-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}

.contact-info { display: flex; flex-direction: column; gap: 1rem; }

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--red), var(--dark-red));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact-card-text h4 {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 0.2rem;
}

.contact-card-text a, .contact-card-text p {
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.contact-card-text a:hover { color: var(--red); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #e0e0e0;
  aspect-ratio: 4/3;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-overlay-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

/* ===================================================
   SECTION: ACTUALITES
   =================================================== */
.actualites { background: var(--white); }

.actualites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.actu-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}

.actu-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.actu-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.actu-card-img.promo { background: linear-gradient(135deg, var(--red), var(--dark-red)); }
.actu-card-img.facebook { background: linear-gradient(135deg, #1877f2, #0d5dbf); }
.actu-card-img.livraison-img { background: linear-gradient(135deg, #2d0000, #1a0000); }

.actu-card-body { padding: 1.25rem; }

.actu-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}
.actu-tag.red { background: var(--light-red); color: var(--red); }
.actu-tag.blue { background: #e3f2fd; color: #1877f2; }
.actu-tag.dark { background: #e0e0e0; color: #333; }

.actu-card-body h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-family: var(--font-main);
  font-weight: 700;
}

.actu-card-body p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.actu-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.actu-link:hover { gap: 0.6rem; }

.social-promo {
  margin-top: 3rem;
  background: linear-gradient(135deg, #1877f2, #0d5dbf);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-promo-text h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.social-promo-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.btn-facebook {
  background: var(--white);
  color: #1877f2;
  border-color: var(--white);
}
.btn-facebook:hover {
  background: #f0f2f5;
  transform: translateY(-2px);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: #111;
  color: rgba(255,255,255,0.7);
}

.footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand .logo img { height: 44px; filter: brightness(0) invert(1); }

.footer-brand .logo { margin-bottom: 1rem; }

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.55);
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover { color: var(--red); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}

.footer-contact-item i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--red); }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--red); }

/* ===================================================
   FLOATING BUTTONS
   =================================================== */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: none;
  text-decoration: none;
  color: var(--white);
}

.float-btn:hover { transform: scale(1.1); }

.float-whatsapp { background: #25d366; }
.float-phone { background: var(--red); }
.float-menu { background: var(--dark); font-size: 1rem; }

.float-label {
  background: rgba(0,0,0,0.8);
  color: var(--white);
  font-size: 0.78rem;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
  position: absolute;
  right: 60px;
}

.float-btn-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.float-btn-wrapper:hover .float-label { opacity: 1; }

/* ===================================================
   PROMO POPUP
   =================================================== */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.promo-popup.show { opacity: 1; visibility: visible; }

.promo-popup-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: scale(0.95);
  transition: var(--transition);
}

.promo-popup.show .promo-popup-inner { transform: scale(1); }

.promo-popup-header {
  background: linear-gradient(135deg, var(--red), var(--dark-red));
  padding: 2rem;
  text-align: center;
  position: relative;
}

.promo-popup-header h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.promo-popup-header p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

.promo-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.promo-popup-close:hover { background: rgba(255,255,255,0.35); }

.promo-popup-body {
  padding: 2rem;
  text-align: center;
}

.promo-offer {
  background: var(--light-red);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px dashed var(--red);
}

.promo-offer .emoji { font-size: 2.5rem; margin-bottom: 0.5rem; }

.promo-offer h3 {
  font-size: 1.1rem;
  color: var(--dark-red);
  margin-bottom: 0.25rem;
}

.promo-offer p { font-size: 0.88rem; color: #555; }

.promo-popup-body .note { font-size: 0.8rem; color: var(--gray); margin-top: 0.75rem; }

/* ===================================================
   UTILITIES
   =================================================== */
.text-red { color: var(--red); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--dark-red));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.divider.center { margin-left: auto; margin-right: auto; }

/* ===================================================
   ANIMATIONS
   =================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .livraison-grid { grid-template-columns: 1fr; }
  .carte-feature { grid-template-columns: 1fr; text-align: center; }
  .carte-feature-visual { display: none; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-phone span { display: none; }

  .hero-stat .number { font-size: 1.5rem; }
  .hero-stats { gap: 1.25rem; }

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

  .social-promo {
    flex-direction: column;
    text-align: center;
  }

  .formules-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-bottom { flex-direction: column; text-align: center; }

  .float-btn { width: 46px; height: 46px; font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
