:root {
  --header-height: 70px;
  --nav-height: 95px;
  --primary: #c40000;
  --dark-bg: #0b0b0b;
  --light-bg: #f5f5f5;
  --gold: #bfa35a;
}

/* ===============================
   RESET & BASE
================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body{
  overflow-x:hidden;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', Arial, sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(191,163,90,0.06), transparent 60%),
    #0b0b0b;
}

/* ===============================
   HEADER
================================= */

.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.6),
    rgba(0,0,0,0)
  );
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  color: white;
}
.topbar {
  height: 70px; /* au lieu de 85 */
  padding-top: 6px;
}
.logo span {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.tagline {
  font-size: 9px;
  letter-spacing: 5px;
  opacity: 0.4;
  color: #f5f5f5; 
  margin-top: 3px;
}

/* ===============================
   PAGE SYSTEM
================================= */

.page {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100dvh - var(--header-height) - var(--nav-height));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  transform: translateY(30px) scale(0.98);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1),
              opacity 0.35s ease;
              scroll-behavior:smooth;
}

.page.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  z-index: 3;
}

/* ===============================
   THEMES
================================= */

.dark {
  background: var(--dark-bg);
  color: white;
}

.light {
  background: var(--light-bg);
  color: #111;
}


/* ===============================
   HERO HOME – STORY
================================= */

#home {
  padding: 0;
}

.hero-story {
  position: relative;
  height: 100%;
  width: 100%;
   filter: brightness(0.9) saturate(1.05);
  background: url('/image/forno.jpg') center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.7) 40%,
      rgba(0,0,0,0.6) 70%,
      rgba(0,0,0,0.85) 100%),
    radial-gradient(circle at 50% 45%,
      rgba(0,0,0,0.65) 0%,
      rgba(0,0,0,0.4) 20%,
      transparent 40%);
}

.hero-content {
  
   margin-top: -250px; /* augmente progressivement */
  position: relative;
  z-index: 2;
  max-width: 360px;
  padding: 0 20px;
}

.hero-story h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

.story-text {
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 2.1;
  font-weight: 300;
 opacity: 0.8;
}

.story-strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--gold);
  margin: 35px 0;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(191,163,90,0.25);
  opacity: 0;
  animation: fadeUp 1.1s ease-out forwards;
  animation-delay: 0.3s;
}

.story-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
  opacity: 0.5;
}

.story-sub {
  font-size: 13px;
  opacity: 0.55;
  letter-spacing: 0.5px;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeUp 0.9s ease-out forwards;
}
/* ===============================
   HERO SEMANAL
================================= */
.hero-premium {
  position: relative;
  height: 100%;
  box-sizing: border-box;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 30px 120px;
  animation: slowZoom 18s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from {
    background-size: 100%;
  }
  to {
    background-size: 110%;
  }
}
.hero-premium .hero-content {
  max-width: 360px;
}
#chefPrice {
  font-size: 18px;
  letter-spacing: 2px;
  margin: 10px 0 20px;
  color: var(--gold);
}
.hero-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to top,
      rgba(0,0,0,0.9) 15%,
      rgba(0,0,0,0.4) 60%,
      rgba(0,0,0,0.2) 100%
  );
}

.badge {
  font-size: 12px;
  letter-spacing: 4px;
  opacity: 0.8;
}

.limited {
  font-size: 12px;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(225,6,0,0.6);
}
/* ===============================
   BUTTON
================================= */

.main-btn {
  background: linear-gradient(135deg, #C6A85A, #E6C77A);
  padding: 14px 32px;
  border-radius: 14px;
  border: none;
  color: #111;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(198,168,90,0.35);
}

/* ===============================
   MENU GRID
================================= */
#menu {
  padding: 40px 20px 60px;
  text-align: center;
}

#menu h2 {
  letter-spacing: 2px;
}

#menu p {
  max-width: 380px;
  margin: 0 auto 20px;
  opacity: 0.8;
}


.menu-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  width:100%;
}
.pizza-count{
position:absolute;
top:8px;
right:8px;
background:#C6A85A;
color:#111;
font-size:12px;
font-weight:600;
padding:4px 7px;
border-radius:8px;
display:none;
}
.menu-card {
  position:relative;
  width:100%;
  max-width:100%;
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(191,163,90,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: all 0.35s ease;
  cursor:pointer;
}
.menu-card.featured {
  border: 1px solid #C6A85A;
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}
.menu-card.disabled {
opacity:0.4;
pointer-events:none;
}
.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(191,163,90,0.4);
}
.menu-card:active{
transform:scale(0.96);
}
.menu-card.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.menu-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.menu-card img{
  width:100%;
  height:150px;
  will-change: transform;
  object-fit:cover;
  display:block;
}

.menu-card:hover img {
  transform: scale(1.05);
}

.menu-card .info {
  padding: 16px;
  background: #111; /* cohérence premium */
  color: #f2f2f2;
  font-family: 'Cormorant Garamond', serif;
}

.menu-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #C6A85A;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.menu-card p {
  margin: 0 0 8px;
  font-size: 14px;
  opacity: 0.8;
}

.price {
  color: #C6A85A;
  font-weight: 600;
  font-size: 16px;
}
/* FEATURED FULL WIDTH */
.menu-card.featured {
  grid-column: span 2;
   grid-column:1 / -1;
}

/* ===============================
   CLUB ANGELY CARD
================================= */
#uid{
  font-size:18px;
  margin-bottom:6px;
}
.loyalty-card {
  background: linear-gradient(145deg, #111, #1a1a1a);
  padding:28px 24px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  text-align: center;
  max-width: 420px;
  margin: auto;
  border: 1px solid rgba(201,163,78,0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
   min-height:auto;
}
.loyalty-card h2{
  font-size:24px;
  margin-bottom:10px;
}
/* ===============================
   SCROLL REVEAL ANIMATION
================================= */
.menu-card:nth-child(1) { transition-delay: 0.1s; }
.menu-card:nth-child(2) { transition-delay: 0.2s; }
.menu-card:nth-child(3) { transition-delay: 0.3s; }
.menu-card:nth-child(4) { transition-delay: 0.4s; }
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ===============================
   FLAMES FIDELITY
================================= */

.points-visual{
  display:flex;
  justify-content:center;
  gap:12px;
  margin:20px 0;
}

.flame{
 width:42px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0.25;
  transition:all .35s ease;
}

.flame-svg{
  width:100%;
  height:100%;
  fill:#5c4a25;
}

.flame.active{
  opacity:1;
  transform:scale(1.25);
  transition:all .35s ease;
}

.flame.active .flame-svg{
  fill:#f3d27a;
  filter:drop-shadow(0 0 14px rgba(243,210,122,0.8));
}
.flame.last{
  transform:scale(1.35);
}

.flame.last .flame-svg{
  filter:
    drop-shadow(0 0 16px rgba(243,210,122,0.9))
    drop-shadow(0 0 30px rgba(243,210,122,0.6));
}
.flame.almost.active{
  animation: glowPulse 1.8s infinite ease-in-out;
}

@keyframes glowPulse{
  0%{
    transform:scale(1.25);
  }
  50%{
    transform:scale(1.35);
  }
  100%{
    transform:scale(1.25);
  }
}
.inline-flame{
width:18px;
height:18px;
fill:#f3d27a;
vertical-align:-3px;
margin-right:6px;
}
/* ===============================
   QR & MESSAGE
================================= */

#remainingMessage {
  opacity: 0.8;
  font-size: 14px;
  margin-top: 10px;
}

.qr-container {
  margin-top: 18px;
}

#qrcode {
  background: white;
  padding: 12px;
  border-radius: 16px;
  display: inline-block;
}
.qr-code{
background:white;
padding:12px;
border-radius:16px;
display:inline-block;
}

.qr-code canvas{
display:block;
}
.qr-container small {
  display: block;
  margin-top: 8px;
  opacity: 0.6;
}

/* ===============================
   LOYALTY MINIMAL HOME
================================= */

.loyalty-minimal-home {
  position: absolute;
  bottom: 90px; /* juste au-dessus de la nav */
  width: 100%;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--gold);
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 3;
}

.loyalty-minimal-home:hover {
  opacity: 1;
  transform: translateY(-2px);
}
/* ===============================
   NAVIGATION
================================= */

.nav-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-end;
  padding: 14px 0 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 1000;
}

.nav-item {
  flex: 1;
  padding: 10px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(191,163,90,0.7);
  cursor: pointer;
}

.nav-item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  margin-bottom: 4px;
}
.nav-item.active span {
  font-weight: 600;
}
.nav-item.active {
   color:#f5f5f5;
}

.nav-item.active svg {
  filter: drop-shadow(0 0 6px rgba(191,163,90,0.5));
fill:#d4af37;

}

/* ===============================
   CENTER BUTTON (FLAME SVG)
================================= */
#centerLabel{
display:none;
}
.center-label{
  margin-bottom:6px;
position:absolute;
bottom:75px;
left:50%;
transform:translateX(-50%);
font-size:10px;
letter-spacing:2px;
color:#C6A85A;
opacity:0.8;
}
.center-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #181818, #0b0b0b);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -26px;
  border: 1px solid rgba(191,163,90,0.4);
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}
.center-btn::after {
  display: none;
}
.center-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 20px rgba(201,163,78,0.7),
    0 10px 25px rgba(0,0,0,0.6);
}
.center-btn.active {
  box-shadow:
    0 0 20px rgba(191,163,90,0.6),
    0 10px 25px rgba(0,0,0,0.6);
  border: 1px solid #E6C77A;
}
.center-icon{
  width:26px;
  height:26px;
  fill: var(--gold);
}
/* ===============================
   WHATSAPP
================================= */

.whatsapp-btn {
  position: fixed;
  bottom: 110px;
  right: 20px;
  background: var(--primary);
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
/* Espace bouton WhatsApp menu */
.menu-cta {
  text-align: center;
  margin: 70px 0 0;
}
/* ===============================
   POSTRES
================================= */

#postres {
 padding: 50px 20px calc(var(--nav-height) + 40px);
}
#postres::after {
  content: "";
  display: block;
  height: calc(var(--nav-height) + 20px);
}
.dessert-grid {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 40px;
}
/* ===============================
   FIDELIDAD
================================= */
.loyalty-login {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* centre vertical */
  align-items: center;       /* centre horizontal */
  text-align: center;
}
.loyalty-login input {
  display: block;
  width: 260px;
  max-width: 80%;
  margin: 20px auto;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(191,163,90,0.3);
  background: #111;
  color: white;
  text-align: center;
}
#fidelite{
  padding:20px;
  overflow-y:hidden;
  margin-top:5px;
}

.center-btn.active {
  box-shadow:
    0 0 20px rgba(191,163,90,0.6),
    0 10px 25px rgba(0,0,0,0.6);
  border: 1px solid #E6C77A;
}
.token-img{
  width:140px;
  margin-top:20px;
  animation: tokenAppear .6s ease, tokenGlow 3s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(191,163,90,0.6));
}

@keyframes tokenGlow{
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.05);
  }
  100%{
    transform:scale(1);
  }
}
/* ===============================
   DESSERT CARD
================================= */

.dessert-card {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(191,163,90,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: transform 0.4s ease, 
              box-shadow 0.4s ease, 
              border 0.4s ease;
}

.dessert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
  border-color: rgba(191,163,90,0.5);
}

/* ===============================
   IMAGE
================================= */

.dessert-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.dessert-card:hover .dessert-image {
  transform: scale(1.04);
}

/* ===============================
   TEXT
================================= */

.dessert-info {
  padding: 22px;
}

.dessert-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.dessert-info .price {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Ligne fine élégante */
.dessert-info h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-top: 8px;
  opacity: 0.4;
}

/* Note fin de semaine */
.dessert-note {
  font-size: 12px;
  opacity: 0.5;
  margin-top: -5px;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

/* ===============================
   REVEAL SOFT – POSTRES
================================= */

.reveal-soft {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.reveal-soft.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ===============================
   HERO CTA (BOUTON PIZZAS)
================================= */

.hero-cta{
  margin-top: 28px;
}

.hero-btn{
  background: transparent;
  border: 1px solid rgba(191,163,90,0.6);
  color: var(--gold);
  padding: 12px 26px;
  border-radius: 14px;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.hero-btn:hover{
  background: rgba(191,163,90,0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(191,163,90,0.2);
}
.ritual-text{
  font-size:14px;
  line-height:1.6;
  opacity:0.8;
  margin:10px 0 20px 0;
}
.qty-controls{
display:flex;
align-items:center;
justify-content:center;
gap:12px;
margin-top:10px;
}

.qty-controls button{
background:#C6A85A;
border:none;
width:28px;
height:28px;
border-radius:6px;
font-size:18px;
font-weight:600;
color:#111;
cursor:pointer;
}
.qty-controls button:active{
transform:scale(0.9);
box-shadow:0 0 10px rgba(191,163,90,0.6);
}
.qty{
min-width:18px;
text-align:center;
font-weight:600;
color:#C6A85A;
}
.cart-badge{
position:absolute;
top:-6px;
right:-6px;
background:#C6A85A;
color:#111;
font-size:12px;
font-weight:700;
width:20px;
height:20px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 0 10px rgba(0,0,0,0.6);
}
/* ======================================================
   PANIER GLOBAL
====================================================== */

.cart-badge{
position:absolute;
top:-6px;
right:-6px;
background:#C6A85A;
color:#111;
font-size:12px;
font-weight:700;
width:20px;
height:20px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 0 10px rgba(0,0,0,0.6);
}


/* ======================================================
   MINI PANIER (PAGE PIZZAS)
====================================================== */

.mini-cart-line{
display:grid;
grid-template-columns:1fr auto;
align-items:center;
max-width:260px;
margin:6px auto;
gap:10px;
font-size:14px;
}

.mini-cart-line span{
text-align:left;
}

.mini-controls{
display:flex;
align-items:center;
gap:8px;
}

.mini-controls span{
min-width:18px;
text-align:center;
font-weight:600;
color:#C6A85A;
}

.mini-controls button{
width:24px;
height:24px;
border-radius:5px;
border:none;
background:#C6A85A;
color:#111;
font-weight:600;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
transition:transform .15s ease;
}

.mini-controls button:active{
transform:scale(0.9);
}


/* ======================================================
   PANIER PAGE COMMANDE
====================================================== */

#cartItems{
max-width:420px;
margin:30px auto;
font-size:15px;
line-height:1.6;
}

.cart-item{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 0;
border-bottom:1px solid rgba(191,163,90,0.12);
}

.cart-name{
font-size:15px;
letter-spacing:0.5px;
}
.cart-info{
display:flex;
flex-direction:column;
}

.cart-name{
font-family:'Cormorant Garamond', serif;
letter-spacing:1.2px;
font-size:16px;
color:#f2f2f2;
}

.cart-price{
font-size:13px;
opacity:0.6;
letter-spacing:1px;
color:#C6A85A;
margin-top:2px;
}
.cart-controls{
display:flex;
align-items:center;
gap:12px;
}

.cart-controls span{
min-width:20px;
text-align:center;
font-weight:600;
color:#C6A85A;
}

.cart-controls button{
width:30px;
height:30px;
border-radius:6px;
border:none;
background:#C6A85A;
color:#111;
font-size:18px;
font-weight:600;
cursor:pointer;
transition:transform .15s ease, box-shadow .2s ease;
}

.cart-controls button:active{
transform:scale(0.9);
box-shadow:0 0 8px rgba(191,163,90,0.6);
}


/* ======================================================
   TOTAL PANIER
====================================================== */

#cartTotal{
text-align:center;
font-size:18px;
margin-top:14px;
color:#C6A85A;
font-weight:600;
}


/* ======================================================
   BOUTON VIDER PANIER
====================================================== */

.cart-clear{
margin-top:14px;
background:none;
border:1px solid rgba(191,163,90,0.4);
color:#C6A85A;
padding:10px 18px;
border-radius:10px;
font-size:14px;
cursor:pointer;
transition:all .2s ease;
}

.cart-clear:hover{
background:rgba(191,163,90,0.12);
}


/* ======================================================
   INPUT ADRESSE
====================================================== */

#deliveryAddress{
width:80%;
max-width:320px;
padding:12px;
border-radius:10px;
border:1px solid rgba(191,163,90,0.3);
background:#111;
color:white;
text-align:center;
margin-bottom:16px;
}




/* ======================================================
   PANIER ACTIF (QUAND PIZZAS)
====================================================== */

.center-btn.has-items{
box-shadow:
0 0 15px rgba(191,163,90,0.6),
0 0 35px rgba(191,163,90,0.3);
border:1px solid #E6C77A;
animation:cartPulse 1.6s infinite;
}

.center-btn.has-items{
animation: cartGlow 2.5s ease-in-out infinite;
}

@keyframes cartGlow{
0%{
box-shadow:0 0 10px rgba(191,163,90,0.3);
}

50%{
box-shadow:
0 0 18px rgba(191,163,90,0.6),
0 0 40px rgba(191,163,90,0.25);
}

100%{
box-shadow:0 0 10px rgba(191,163,90,0.3);
}
}
/* ===============================
   PANIER ANIMATION
================================= */

.center-btn.has-items{
animation: cartFloat 1.8s ease-in-out infinite;
}

@keyframes cartFloat{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-6px);
}

100%{
transform:translateY(0);
}

}
.cart-badge.pop{
animation: badgePop .3s ease;
}

@keyframes badgePop{
0%{transform:scale(1)}
50%{transform:scale(1.35)}
100%{transform:scale(1)}
}
/* ===============================
   students
================================= */
.student-card{
max-width:360px;
margin:40px auto;
padding:30px 20px;
background:linear-gradient(145deg,#111,#1a1a1a);
border-radius:20px;
border:1px solid rgba(191,163,90,0.2);
box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

.student-pizzas{
font-size:30px;
letter-spacing:12px;
margin-bottom:12px;
}

.student-counter{
font-size:16px;
color:#C6A85A;
letter-spacing:1px;
}
/* ===============================
   STUDENTS PIZZA ICONS
================================= */
#estudiantes{
padding:40px 20px 60px;
text-align:center;
}
.student-pizzas{
display:flex;
justify-content:center;
gap:14px;
margin-bottom:14px;
}

.pizza-icon{
width:32px;
height:32px;
fill:#5c4a25;
opacity:0.35;
transition:all .35s ease;
}

.pizza-icon.active{
fill:#f3d27a;
opacity:1;
transform:scale(1.25);
filter:drop-shadow(0 0 12px rgba(243,210,122,0.7));
}
/* ===============================
   OVEN REST MESSAGE
================================= */

.oven-rest{
text-align:center;
margin:10px 0 30px 0;
}

.oven-message h2{
font-size:18px;
letter-spacing:2px;
margin-bottom:6px;
}

.oven-message p{
opacity:0.75;
font-size:14px;
letter-spacing:0.04em;
margin-bottom:8px;
}

/* CONTENEUR DU COMPTEUR */

.oven-countdown{
display:flex;
justify-content:center;
gap:14px;
margin-top:12px;
font-family:'Cormorant Garamond', serif;
}

/* BLOCS HEURE / MIN / SEC */

.oven-time{
background:rgba(191,163,90,0.08);
border:1px solid rgba(191,163,90,0.25);
border-radius:10px;
padding:6px 10px;
min-width:46px;
text-align:center;
color:#C6A85A;
font-size:18px;
letter-spacing:2px;
box-shadow:0 0 10px rgba(191,163,90,0.15);
}

/* LABEL H M S */

.oven-time small{
display:block;
font-size:9px;
letter-spacing:1px;
opacity:0.6;
margin-top:2px;
}

/* ===============================
   OVEN SLEEP BACKGROUND
================================= */

#cart.oven-sleep{
background:url("/image/fire.jpg") center 50% / cover no-repeat;
}

#cart{
overflow-y:hidden;
display:flex;
flex-direction:column;
align-items:center;
justify-content:flex-start;
}
.motivation-gold{
color:#C6A85A;
font-size:18px;
font-weight:500;
letter-spacing:0.5px;
}
.reward{
color:#C6A85A;
font-size:18px;
font-weight:600;
text-align:center;
text-shadow:0 0 10px rgba(198,168,90,0.4);
}
/* ===============================
   TOKEN REWARD COMPACT
================================= */

#rewardToken{
display:flex;
justify-content:center;
margin:10px 0 6px 0;
}

.token-img{
width:110px;
margin-top:8px;
}

/* QR plus proche du token */

.qr-container{
margin-top:8px;
}

#qrcode{
padding:10px;
border-radius:14px;
}
@keyframes tokenAppear{
0%{
opacity:0;
transform:scale(0.6);
}
100%{
opacity:1;
transform:scale(1);
}
}