/* ================================================================
   AIRE DE JEUX — MAIN STYLESHEET
   Palette: Bordeaux #7C243A | Green #29483B | Beige #D8C1A0 | White #FFFCFA
================================================================ */

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --clr-dark:        #29483B;
  --clr-dark2:       #355545;
  --clr-green:       #7C243A;
  --clr-green-mid:   #964057;
  --clr-green-light: #B85C72;
  --clr-green-pale:  #F7ECEF;
  --clr-gold:        #D8C1A0;
  --clr-gold-light:  #F5EBDD;
  --clr-gold-pale:   #FBF7F1;
  --clr-cream:       #FFFCFA;
  --clr-white:       #ffffff;
  --clr-text:        #1C1C1C;
  --clr-text-mid:    #4A4A4A;
  --clr-text-light:  #888888;
  --clr-border:      rgba(201,168,76,0.25);
  --clr-border-green:rgba(41,72,59,0.18);
  --shadow-sm:       0 2px 12px rgba(41,72,59,.08);
  --shadow:          0 8px 32px rgba(124,36,58,.14);
  --shadow-lg:       0 16px 48px rgba(124,36,58,.18);
  --shadow-gold:     0 8px 28px rgba(216,193,160,.25);
  --radius-sm:       8px;
  --radius:          14px;
  --radius-lg:       20px;
  --radius-xl:       28px;
  --trans:           .25s ease;
  --font-head:       'Playfair Display', Georgia, serif;
  --font-body:       'Inter', Arial, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #fffdfb 0%, #f9f4ed 100%);
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: var(--clr-green); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--clr-gold); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--clr-dark); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--trans); text-decoration: none;
}
.btn--green {
  background: var(--clr-green); color: white;
  box-shadow: 0 4px 16px rgba(124,36,58,.28);
}
.btn--green:hover {
  background: var(--clr-green-light); color: white;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,36,58,.32);
}
.btn--gold {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: var(--clr-dark); box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  color: var(--clr-dark); transform: translateY(-2px);
}
.btn--outline {
  background: transparent; border: 2px solid var(--clr-green);
  color: var(--clr-green);
}
.btn--outline:hover { background: var(--clr-green); color: white; }
.btn--outline-gold {
  background: transparent; border: 2px solid var(--clr-gold);
  color: var(--clr-gold);
}
.btn--outline-gold:hover { background: var(--clr-gold); color: var(--clr-dark); }
.btn--sm { padding: 9px 20px; font-size: .82rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--cart {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: var(--clr-dark); font-weight: 700;
}
.btn--cart:hover {
  background: linear-gradient(135deg, var(--clr-green-light), var(--clr-green));
  color: white; transform: translateY(-2px);
}

/* ══════════════════════════════════
   AGE OVERLAY
══════════════════════════════════ */
.age-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,36,24,.92); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.age-overlay.active { display: flex; animation: fadeIn .4s ease; }
.age-overlay.closing { animation: fadeOut .35s ease forwards; }
.age-modal {
  background: linear-gradient(180deg, #fffdfb 0%, #f9f4ed 100%); border-radius: var(--radius-xl);
  padding: 48px 44px; max-width: 460px; width: calc(100% - 32px);
  text-align: center; border: 1px solid var(--clr-border);
  box-shadow: 0 24px 64px rgba(33,28,24,.38);
  animation: slideUp .4s ease;
}
.age-modal__badge {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-green), var(--clr-dark));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800;
  color: var(--clr-gold-light); margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(124,36,58,.32);
}
.age-modal__title {
  font-size: 1.55rem; color: var(--clr-dark); margin-bottom: 12px;
}
.age-modal__text {
  font-size: .9rem; color: var(--clr-text-mid); margin-bottom: 8px; line-height: 1.6;
}
.age-modal__sub {
  font-size: .82rem; color: var(--clr-text-light); margin-bottom: 28px; line-height: 1.6;
}
.age-modal__sub a { color: var(--clr-green); }
.age-modal__buttons { display: flex; flex-direction: column; gap: 12px; }
.age-modal__buttons button {
  padding: 14px 24px; border-radius: var(--radius-sm); border: none;
  font-family: var(--font-body); font-size: .92rem; font-weight: 600;
  cursor: pointer; transition: all var(--trans);
}
#age-confirm {
  background: linear-gradient(135deg, var(--clr-green), var(--clr-dark));
  color: white; box-shadow: 0 4px 16px rgba(124,36,58,.28);
}
#age-confirm:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,36,58,.38); }
#age-deny {
  background: transparent; border: 1.5px solid rgba(124,36,58,.28) !important;
  color: var(--clr-text-light); font-size: .85rem;
}
#age-deny:hover { background: #f5f5f5; }

/* ══════════════════════════════════
   COOKIE BANNER
══════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 620px; margin: 0 auto; z-index: 8888;
  background: var(--clr-dark); color: var(--clr-cream);
  border-radius: var(--radius); padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(33,28,24,.32);
  border: 1px solid var(--clr-border);
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: .84rem; flex: 1; min-width: 200px; color: rgba(255,252,250,.84); }
.cookie-banner a { color: var(--clr-gold-light); }
.cookie-banner__actions { display: flex; gap: 10px; }

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(253,251,244,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--clr-border-green);
  box-shadow: 0 2px 16px rgba(41,72,59,.07);
}
.header__inner {
  display: flex; align-items: center; gap: 24px;
  padding: 14px 0; position: relative;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 52px; width: auto; }
.site-nav { margin-left: auto; }
.nav__list { display: flex; gap: 4px; align-items: center; }
.nav__link {
  font-size: .88rem; font-weight: 500; color: var(--clr-text-mid);
  padding: 8px 14px; border-radius: var(--radius-sm); transition: all var(--trans);
}
.nav__link:hover, .nav__link--active {
  color: var(--clr-green); background: var(--clr-green-pale);
}
.nav__link--active { font-weight: 700; color: var(--clr-green) !important; }
/* Cart icon */
.cart-btn {
  position: relative; background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: var(--radius-sm); transition: all var(--trans);
  color: var(--clr-green); display: flex; align-items: center;
}
.cart-btn:hover { background: var(--clr-green-pale); }
.cart-btn svg { width: 24px; height: 24px; }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--clr-gold); color: var(--clr-dark);
  border-radius: 50%; width: 18px; height: 18px;
  font-size: .68rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.cart-count.has-items { display: flex; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--clr-green); border-radius: 2px; transition: all .3s; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(43,24,59,.88) 0%, rgba(110,75,184,.78) 52%, rgba(58,35,81,.9) 100%),
    url('../images/backgrounds/hero-casino-room.jpg') center/cover no-repeat;
  padding: 100px 0 90px; min-height: 580px; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(243,231,213,.16) 0%, transparent 36%),
    radial-gradient(circle at 82% 22%, rgba(160,123,239,.22) 0%, transparent 34%),
    linear-gradient(to bottom, rgba(43,24,59,.12), rgba(43,24,59,.35));
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__content { max-width: 620px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.35);
  color: var(--clr-gold-light); padding: 6px 16px; border-radius: 30px;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem); color: white; font-weight: 800;
  line-height: 1.1; margin-bottom: 20px; font-family: var(--font-head);
}
.hero__title span { color: var(--clr-gold-light); }
.hero__sub {
  font-size: 1.05rem; color: rgba(255,252,250,.84); margin-bottom: 32px; line-height: 1.7;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__disclaimer {
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.25); border-radius: var(--radius-sm);
  padding: 10px 16px; font-size: .8rem; color: rgba(253,251,244,.6);
  border: 1px solid rgba(201,168,76,.2);
}
.hero__badges {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 32px;
}
.hero__badge {
  text-align: center; background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.2); border-radius: var(--radius);
  padding: 16px 24px; min-width: 100px;
}
.hero__badge-num {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 800;
  color: var(--clr-gold-light);
}
.hero__badge-lbl { font-size: .75rem; color: rgba(253,251,244,.6); margin-top: 2px; }

/* ══════════════════════════════════
   SECTION HEADERS
══════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header--left { text-align: left; }
.section-eyebrow {
  display: inline-block; background: var(--clr-green-pale);
  border: 1px solid rgba(26,77,46,.2); color: var(--clr-green-mid);
  padding: 5px 16px; border-radius: 30px;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title { color: var(--clr-dark); margin-bottom: 14px; }
.section-title span { color: var(--clr-gold); }
.section-sub { font-size: .95rem; color: var(--clr-text-mid); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ══════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════ */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px;
}
.product-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid rgba(26,77,46,.1); overflow: hidden;
  transition: all var(--trans); position: relative;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,77,46,.18), 0 0 0 1px rgba(201,168,76,.3);
  border-color: rgba(201,168,76,.4);
}
.product-card--featured {
  border-color: var(--clr-gold); box-shadow: 0 8px 32px rgba(201,168,76,.2);
}
.product-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: var(--clr-dark); font-size: .72rem; font-weight: 800;
  padding: 4px 12px; border-radius: 20px; letter-spacing: .05em;
}
.product-card__image {
  position: relative; overflow: hidden;
  height: 220px; background: linear-gradient(135deg, var(--clr-green-pale), #d4e8d9);
  display: flex; align-items: center; justify-content: center;
}
.product-card__image-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s ease;
}
.product-card:hover .product-card__image-inner { transform: scale(1.05); }
/* Product emoji/icon display */
.product-icon {
  font-size: 5rem; filter: drop-shadow(0 8px 16px rgba(0,0,0,.15));
  transition: all .4s ease;
}
.product-card:hover .product-icon {
  filter: drop-shadow(0 0 20px rgba(201,168,76,.6)) drop-shadow(0 8px 16px rgba(0,0,0,.2));
  transform: scale(1.08);
}
/* Glow animation on product cards */
@keyframes productGlow {
  0%, 100% { box-shadow: 0 8px 32px rgba(26,77,46,.18), inset 0 0 40px rgba(201,168,76,.0); }
  50% { box-shadow: 0 8px 40px rgba(201,168,76,.3), inset 0 0 30px rgba(201,168,76,.05); }
}
.product-card:hover { animation: productGlow 2s ease infinite; }

.product-card__body { padding: 20px; }
.product-card__cat {
  font-size: .72rem; font-weight: 700; color: var(--clr-green-mid);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  color: var(--clr-dark); margin-bottom: 8px; line-height: 1.3;
}
.product-card__desc {
  font-size: .84rem; color: var(--clr-text-mid); margin-bottom: 14px; line-height: 1.6;
}
.product-card__stars { color: var(--clr-gold); font-size: .9rem; margin-bottom: 10px; }
.product-card__stars span { color: var(--clr-text-light); font-size: .78rem; margin-left: 4px; }
.product-card__footer {
  padding: 0 20px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
}
.product-card__price {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--clr-green);
}
.product-card__price-old {
  font-size: .82rem; color: var(--clr-text-light); text-decoration: line-through; margin-left: 6px;
}

/* ══════════════════════════════════
   CART SIDEBAR
══════════════════════════════════ */
.cart-overlay {
  display: none; position: fixed; inset: 0; z-index: 8000;
  background: rgba(10,36,24,.5);
}
.cart-overlay.open { display: block; }
.cart-sidebar {
  position: fixed; top: 0; right: -440px; width: 420px; height: 100vh;
  background: linear-gradient(180deg, #fffdfb 0%, #f9f4ed 100%); z-index: 8001;
  box-shadow: -8px 0 32px rgba(0,0,0,.2);
  transition: right .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; overflow: hidden;
}
.cart-sidebar.open { right: 0; }
.cart-sidebar__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--clr-border-green);
  background: var(--clr-dark);
}
.cart-sidebar__title { font-family: var(--font-head); font-size: 1.2rem; color: white; }
.cart-close {
  background: none; border: none; cursor: pointer; color: var(--clr-gold-light);
  font-size: 1.4rem; padding: 4px; line-height: 1;
}
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid rgba(26,77,46,.1);
}
.cart-item__icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--clr-green-pale); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.cart-item__name { font-weight: 600; font-size: .88rem; color: var(--clr-dark); margin-bottom: 4px; }
.cart-item__price { font-family: var(--font-head); font-weight: 700; color: var(--clr-green); }
.cart-item__qty { font-size: .8rem; color: var(--clr-text-light); }
.cart-item__remove { margin-left: auto; background: none; border: none; cursor: pointer; color: var(--clr-text-light); font-size: 1.1rem; padding: 4px; }
.cart-item__remove:hover { color: #dc2626; }
.cart-empty { text-align: center; padding: 48px 24px; color: var(--clr-text-light); }
.cart-empty__icon { font-size: 3rem; margin-bottom: 12px; opacity: .4; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--clr-border-green); }
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; font-weight: 700;
}
.cart-total-price { font-family: var(--font-head); font-size: 1.3rem; color: var(--clr-green); }

/* ══════════════════════════════════
   ORDER MODAL
══════════════════════════════════ */
.order-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,36,24,.7); align-items: center; justify-content: center;
}
.order-modal-overlay.open { display: flex; animation: fadeIn .3s ease; }
.order-modal {
  background: linear-gradient(180deg, #fffdfb 0%, #f9f4ed 100%); border-radius: var(--radius-xl);
  padding: 40px; max-width: 480px; width: calc(100% - 32px);
  box-shadow: 0 24px 64px rgba(33,28,24,.32);
  border: 1px solid var(--clr-border);
}
.order-modal h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--clr-dark); margin-bottom: 6px; }
.order-modal p { font-size: .88rem; color: var(--clr-text-mid); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .84rem; font-weight: 600; color: var(--clr-dark); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(26,77,46,.2); background: white;
  font-family: var(--font-body); font-size: .9rem; color: var(--clr-text);
  outline: none; transition: border-color var(--trans);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--clr-green); box-shadow: 0 0 0 3px rgba(26,77,46,.1);
}
.order-loader { display: none; text-align: center; padding: 32px 0; }
.order-loader__spinner {
  width: 40px; height: 40px; border: 3px solid rgba(26,77,46,.2);
  border-top-color: var(--clr-green); border-radius: 50%;
  animation: spin 1s linear infinite; margin: 0 auto 14px;
}
.order-success { display: none; text-align: center; padding: 20px 0; }
.order-success__icon { font-size: 3.5rem; margin-bottom: 14px; }
.order-success h3 { color: var(--clr-green); margin-bottom: 8px; }

/* ══════════════════════════════════
   REVIEWS
══════════════════════════════════ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.review-card {
  background: white; border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid rgba(26,77,46,.08); box-shadow: var(--shadow-sm);
  transition: all var(--trans);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-card__header { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.review-avatar {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--clr-green), var(--clr-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
  color: var(--clr-gold-light);
}
.review-name { font-weight: 700; font-size: .92rem; color: var(--clr-dark); }
.review-date { font-size: .76rem; color: var(--clr-text-light); margin-top: 2px; }
.review-stars { color: var(--clr-gold); font-size: .95rem; margin-bottom: 12px; }
.review-text { font-size: .87rem; color: var(--clr-text-mid); line-height: 1.7; margin-bottom: 14px; }
.review-product-tag {
  display: inline-block; background: var(--clr-green-pale);
  border: 1px solid rgba(26,77,46,.15); color: var(--clr-green-mid);
  font-size: .72rem; font-weight: 600; padding: 3px 10px; border-radius: 20px;
}
.review-photo {
  margin-top: 14px; border-radius: var(--radius-sm); overflow: hidden;
  background: linear-gradient(135deg, #e8f0ea, #d4e8d9);
  height: 100px; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; border: 1px solid rgba(26,77,46,.08);
}

/* ══════════════════════════════════
   INFO SECTIONS
══════════════════════════════════ */
.info-section { background: white; }
.info-section--alt { background: var(--clr-green-pale); }
.info-section--dark {
  background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-green) 100%);
  color: white;
}
.info-section--dark h2, .info-section--dark h3 { color: white; }
.info-section--dark p { color: rgba(255,252,250,.84); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--clr-green), var(--clr-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: 0 4px 12px rgba(26,77,46,.2);
}
.feature-item h4 { font-size: .95rem; font-weight: 700; color: var(--clr-dark); margin-bottom: 3px; }
.feature-item p { font-size: .84rem; color: var(--clr-text-mid); }

/* ══════════════════════════════════
   SAFETY BANNER
══════════════════════════════════ */
.safety-banner {
  background: linear-gradient(135deg, var(--clr-dark), var(--clr-green));
  border-radius: var(--radius-lg); padding: 28px 32px;
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid rgba(201,168,76,.2);
  margin: 24px 0;
}
.safety-banner__icon { font-size: 2rem; flex-shrink: 0; }
.safety-banner h4 { font-family: var(--font-head); color: var(--clr-gold-light); margin-bottom: 6px; }
.safety-banner p { font-size: .85rem; color: rgba(255,252,250,.84); line-height: 1.6; }

/* ══════════════════════════════════
   CTA BAND
══════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-green) 100%);
  padding: 64px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: white; margin-bottom: 14px; }
.cta-band p { color: rgba(253,251,244,.75); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  background: var(--clr-dark); color: rgba(253,251,244,.75);
  padding: 64px 0 0;
}
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__brand .site-logo img { opacity: 0.95; }
.footer__tagline { font-size: .84rem; color: rgba(253,251,244,.55); margin: 12px 0 16px; line-height: 1.65; }
.footer__contact-item { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 8px; font-size: .82rem; }
.footer__contact-item .icon { color: var(--clr-gold-light); flex-shrink: 0; }
.email-plain { color: var(--clr-gold-light); cursor: default; user-select: all; }
.footer__col h4 { font-family: var(--font-head); font-size: .88rem; font-weight: 700; color: var(--clr-gold-light); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; }
.footer__col ul li { margin-bottom: 9px; }
.footer__col ul li a { font-size: .82rem; color: rgba(253,251,244,.55); transition: color var(--trans); }
.footer__col ul li a:hover { color: var(--clr-gold-light); }
.footer__bottom { border-top: 1px solid rgba(201,168,76,.12); padding: 24px 0 32px; }
.footer__legal { font-size: .76rem; color: rgba(253,251,244,.35); line-height: 1.8; margin-bottom: 12px; }
.footer__copy { font-size: .74rem; color: rgba(253,251,244,.25); }
.footer__copy a { color: rgba(201,168,76,.6); }

/* ══════════════════════════════════
   INNER PAGE STYLES
══════════════════════════════════ */
.page-hero {
  padding: 72px 0 78px;
  background:
    linear-gradient(135deg, rgba(43,24,59,.9) 0%, rgba(110,75,184,.78) 100%),
    url('../images/backgrounds/friends-game-night.jpg') center/cover no-repeat;
  position: relative; overflow: hidden;
}
.page-hero__eyebrow { display: inline-block; background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3); color: var(--clr-gold-light); padding: 5px 16px; border-radius: 30px; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.page-hero__title { font-size: clamp(1.8rem,4vw,2.8rem); color: white; margin-bottom: 10px; }
.page-hero__sub { font-size: .95rem; color: rgba(253,251,244,.7); max-width: 520px; }
.page-hero__breadcrumb { font-size: .8rem; color: rgba(253,251,244,.5); margin-top: 16px; }
.page-hero__breadcrumb a { color: var(--clr-gold-light); }

.legal-content { max-width: 820px; margin: 0 auto; padding: 64px 24px; }
.legal-content h2 { font-size: 1.2rem; color: var(--clr-green); margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(26,77,46,.15); }
.legal-content h3 { font-size: 1rem; color: var(--clr-dark); margin: 20px 0 8px; }
.legal-content p { color: var(--clr-text-mid); margin-bottom: 14px; line-height: 1.75; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal-content ul li { color: var(--clr-text-mid); margin-bottom: 7px; line-height: 1.65; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--clr-green); font-weight: 600; margin-bottom: 32px; }
.legal-back:hover { color: var(--clr-gold); }

/* ══════════════════════════════════
   POKER GUIDE STYLES
══════════════════════════════════ */
.combo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; margin: 24px 0; }
.combo-card { background: white; border-radius: var(--radius); padding: 20px; border: 1px solid rgba(26,77,46,.1); box-shadow: var(--shadow-sm); transition: all var(--trans); }
.combo-card:hover { border-color: var(--clr-gold); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.combo-card__rank { display: inline-flex; background: linear-gradient(135deg, var(--clr-green), var(--clr-dark)); color: var(--clr-gold-light); font-family: var(--font-head); font-size: .78rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.combo-card__name { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--clr-dark); margin-bottom: 6px; }
.combo-card__example { font-size: 1.3rem; letter-spacing: 4px; margin-bottom: 8px; }
.combo-card__desc { font-size: .82rem; color: var(--clr-text-mid); line-height: 1.6; }

/* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-box, .contact-form-box {
  background: white; border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid rgba(26,77,46,.1); box-shadow: var(--shadow-sm);
}
.contact-info-box h2, .contact-form-box h2 { font-family: var(--font-head); font-size: 1.3rem; color: var(--clr-dark); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid rgba(26,77,46,.1); }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-item__icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--radius-sm); background: var(--clr-green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-item__label { font-size: .76rem; font-weight: 700; color: var(--clr-text-light); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.contact-item__value { font-size: .9rem; color: var(--clr-text); font-weight: 500; }

/* ══════════════════════════════════
   DELIVERY PAGE
══════════════════════════════════ */
.delivery-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.delivery-card { background: white; border-radius: var(--radius-lg); padding: 28px; border: 1px solid rgba(26,77,46,.1); text-align: center; box-shadow: var(--shadow-sm); transition: all var(--trans); }
.delivery-card:hover { border-color: var(--clr-gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.delivery-card__icon { font-size: 2.5rem; margin-bottom: 14px; }
.delivery-card h3 { font-family: var(--font-head); color: var(--clr-dark); margin-bottom: 8px; }
.delivery-card p { font-size: .85rem; color: var(--clr-text-mid); line-height: 1.65; }

/* ══════════════════════════════════
   ABOUT PAGE
══════════════════════════════════ */
.about-team { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.team-card { background: white; border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; border: 1px solid rgba(26,77,46,.1); box-shadow: var(--shadow-sm); }
.team-avatar { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, var(--clr-green), var(--clr-dark)); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--clr-gold-light); margin: 0 auto 14px; }
.team-card h4 { font-family: var(--font-head); color: var(--clr-dark); margin-bottom: 4px; }
.team-card p { font-size: .8rem; color: var(--clr-text-light); }

/* ══════════════════════════════════
   UTILITIES
══════════════════════════════════ */
.tag { display: inline-block; background: var(--clr-green-pale); border: 1px solid rgba(26,77,46,.15); color: var(--clr-green-mid); font-size: .72rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin: 2px; }
.divider-gold { width: 60px; height: 3px; background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light)); border-radius: 2px; margin: 12px 0 20px; }
.divider-gold--center { margin: 12px auto 20px; }
.highlight-box { background: var(--clr-green-pale); border-left: 4px solid var(--clr-green); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; margin: 20px 0; }
.highlight-box p { margin: 0; font-size: .88rem; color: var(--clr-text-mid); }

/* Scroll fade-in */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }

/* Keyframes */
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes fadeOut { from { opacity:1; } to { opacity:0; } }
@keyframes slideUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:none; } }
@keyframes spin    { to { transform:rotate(360deg); } }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media(max-width:1000px) {
  .info-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  section { padding: 60px 0; }
  .hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(43,24,59,.88) 0%, rgba(110,75,184,.78) 52%, rgba(58,35,81,.9) 100%),
    url('../images/backgrounds/hero-casino-room.jpg') center/cover no-repeat;
  padding: 100px 0 90px; min-height: 580px; display: flex; align-items: center;
}
  .hero__cta { flex-direction: column; }
  .hero__badges { justify-content: center; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .cart-sidebar { width: 100%; right: -100%; }
  .site-nav { display: none; }
  .site-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: linear-gradient(180deg, #fffdfb 0%, #f9f4ed 100%); border-bottom: 1px solid var(--clr-border-green); padding: 12px 0; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
  .site-nav.open .nav__list { flex-direction: column; gap: 0; padding: 0 16px; }
  .site-nav.open .nav__link { display: block; padding: 12px 16px; }
  .nav-toggle { display: flex; }
}
@media(max-width:480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card__image { height: 160px; }
  .product-icon { font-size: 3.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .combo-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════
   INNER PAGES
══════════════════════════════════ */

/* Page Hero */
.page-hero {
  padding: 72px 0 78px;
  background:
    linear-gradient(135deg, rgba(43,24,59,.9) 0%, rgba(110,75,184,.78) 100%),
    url('../images/backgrounds/friends-game-night.jpg') center/cover no-repeat;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,24,59,.1), rgba(43,24,59,.32));
  pointer-events: none;
}
.page-hero__eyebrow {
  display: inline-block;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--clr-gold-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: 14px;
  line-height: 1.2;
}
.page-hero__sub {
  color: rgba(253,251,244,.75);
  font-size: 1.02rem;
  max-width: 560px;
}

/* Inner page wrapper */
.inner-page { padding: 60px 0 80px; }
.inner-narrow { max-width: 780px; margin: 0 auto; }

/* Inner card */
.inner-card {
  background: white;
  border: 1px solid var(--clr-border-green);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), transform var(--trans);
}
.inner-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.inner-card h3 { margin-bottom: 12px; }

/* Combo grid */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 0 60px;
}

/* Legal block */
.legal-block { padding: 12px 0; }
.legal-date { color: var(--clr-text-light); font-size: .82rem; margin-bottom: 28px; }
.legal-block h2 {
  font-size: 1.2rem;
  color: var(--clr-green);
  margin: 32px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--clr-border-green);
}
.legal-block h2:first-of-type { margin-top: 0; }
.legal-block p { color: var(--clr-text-mid); line-height: 1.75; margin-bottom: 12px; }

/* Legal table */
.legal-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.legal-table th {
  background: var(--clr-green);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.legal-table td { padding: 10px 14px; border-bottom: 1px solid var(--clr-border-green); color: var(--clr-text-mid); }
.legal-table tr:nth-child(even) td { background: var(--clr-green-pale); }
.legal-table tr:last-child td { border-bottom: none; }

/* Section pattern (used in index.html) */
.section-pattern {
  position: relative;
}

/* Email plain (non-clickable) */
.email-plain {
  color: var(--clr-green);
  font-weight: 500;
  cursor: default;
  user-select: all;
}

/* Form group */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .84rem; font-weight: 600; color: var(--clr-text-mid); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--clr-border-green);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--clr-text);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--clr-green);
  box-shadow: 0 0 0 3px rgba(26,77,46,.1);
}

/* ── Header / Nav (full) ── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(253,251,244,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border-green);
  box-shadow: 0 2px 16px rgba(41,72,59,.07);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 24px;
}
.site-logo img { display: block; }
.nav__list { display: flex; gap: 6px; align-items: center; }
.nav__link {
  font-size: .87rem; font-weight: 500; color: var(--clr-text-mid);
  padding: 7px 12px; border-radius: var(--radius-sm);
  transition: all var(--trans);
}
.nav__link:hover, .nav__link--active {
  background: var(--clr-green-pale); color: var(--clr-green);
}
.cart-btn {
  position: relative; background: var(--clr-green); color: white;
  border: none; border-radius: var(--radius-sm);
  width: 42px; height: 42px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans), transform var(--trans);
}
.cart-btn:hover { background: var(--clr-green-light); transform: scale(1.05); }
.cart-btn svg { width: 18px; height: 18px; }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--clr-gold); color: var(--clr-dark);
  font-size: .7rem; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.cart-count.has-items { animation: popIn .3s ease; }
@keyframes popIn { 0%{transform:scale(0.5)} 70%{transform:scale(1.2)} 100%{transform:scale(1)} }
@keyframes bounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.3)} }
.cart-count.bounce { animation: bounce .5s ease; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  width: 38px; height: 38px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: all var(--trans); }

/* Cart sidebar */
.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 380px; height: 100vh;
  background: white; z-index: 1001;
  box-shadow: -8px 0 40px rgba(10,36,24,.15);
  display: flex; flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
}
.cart-sidebar.open { right: 0; }
.cart-sidebar__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--clr-border-green);
}
.cart-sidebar__title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--clr-dark); }
.cart-close { background: none; border: none; cursor: pointer; font-size: 1.2rem; color: var(--clr-text-light); transition: color var(--trans); }
.cart-close:hover { color: var(--clr-text); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { text-align: center; padding: 40px 20px; color: var(--clr-text-light); }
.cart-empty__icon { font-size: 3rem; margin-bottom: 12px; }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--clr-border-green); }
.cart-item__icon { font-size: 2rem; min-width: 44px; text-align: center; }
.cart-item__info { flex: 1; }
.cart-item__name { font-size: .88rem; font-weight: 600; color: var(--clr-text); }
.cart-item__price { font-size: .82rem; color: var(--clr-gold); font-weight: 600; margin-top: 2px; }
.cart-item__qty { font-size: .78rem; color: var(--clr-text-light); }
.cart-item__remove { background: none; border: none; cursor: pointer; color: var(--clr-text-light); font-size: .9rem; transition: color var(--trans); }
.cart-item__remove:hover { color: #c0392b; }
.cart-footer { padding: 16px; border-top: 1px solid var(--clr-border-green); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 14px; font-weight: 600; }
.cart-total-price { color: var(--clr-green); font-size: 1.1rem; }
.cart-overlay {
  position: fixed; inset: 0; background: rgba(10,36,24,.4);
  z-index: 1000; opacity: 0; visibility: hidden; transition: all .3s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }

/* Order modal */
.order-modal-overlay {
  position: fixed; inset: 0; background: rgba(10,36,24,.5);
  z-index: 1100; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s;
  padding: 20px;
}
.order-modal-overlay.open { opacity: 1; visibility: visible; }
.order-modal {
  background: white; border-radius: var(--radius-lg);
  padding: 32px 28px; width: 100%; max-width: 460px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  animation: slideUp .3s ease;
}
.order-loader { display: none; text-align: center; padding: 40px 0; }
.order-loader__spinner {
  width: 48px; height: 48px; border: 4px solid var(--clr-border-green);
  border-top-color: var(--clr-green); border-radius: 50%;
  animation: spin 1s linear infinite; margin: 0 auto 16px;
}
.order-success { display: none; text-align: center; padding: 20px 0; }
.order-success__icon { font-size: 3rem; margin-bottom: 12px; }

/* Scroll progress */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--clr-green), var(--clr-gold));
  z-index: 9999; width: 0; transition: width .1s;
}

/* Hero section */
.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(43,24,59,.88) 0%, rgba(110,75,184,.78) 52%, rgba(58,35,81,.9) 100%),
    url('../images/backgrounds/hero-casino-room.jpg') center/cover no-repeat;
  padding: 100px 0 90px; min-height: 580px; display: flex; align-items: center;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12), transparent 70%);
  pointer-events: none;
}
@keyframes orbFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-30px)} }
.hero__content { max-width: 620px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(216,193,160,.25);
  color: var(--clr-gold-light); font-size: .8rem; font-weight: 600;
  letter-spacing: .06em; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.hero__title {
  color: white; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.15;
  margin-bottom: 20px;
}
.hero__title span { color: var(--clr-gold-light); }
.hero__sub { color: rgba(255,252,250,.84); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero__disclaimer {
  display: flex; align-items: flex-start; gap: 8px;
  background: rgba(0,0,0,.2); border-radius: 10px;
  padding: 12px 16px; font-size: .8rem; color: rgba(253,251,244,.7); margin-top: 8px;
}
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 40px;
}
.hero__badge {
  background: rgba(255,255,255,.08); border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-sm); padding: 14px 20px; text-align: center;
}
.hero__badge-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--clr-gold-light); }
.hero__badge-lbl { font-size: .78rem; color: rgba(253,251,244,.7); margin-top: 2px; }

/* Products grid */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.product-card {
  background: white; border: 1px solid var(--clr-border-green);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card--featured { border-color: rgba(201,168,76,.4); }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: var(--clr-dark); font-size: .72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 12px; z-index: 1;
}
.product-card__image {
  height: 200px; background: linear-gradient(135deg, var(--clr-dark), var(--clr-green));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  position: relative;
}
.product-card:hover .product-card__image::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(201,168,76,.2), transparent 60%);
  animation: glowPulse 1.5s ease-in-out infinite;
}
.product-card__image-inner { display: flex; align-items: center; justify-content: center; }
.product-icon { font-size: 4.5rem; filter: drop-shadow(0 0 16px rgba(201,168,76,.4)); transition: transform .3s ease; }
.product-card:hover .product-icon { transform: scale(1.1) rotate(-3deg); }
.product-card__body { padding: 18px 18px 10px; flex: 1; }
.product-card__cat { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--clr-green-mid); margin-bottom: 6px; }
.product-card__name { font-family: var(--font-head); font-size: 1.02rem; color: var(--clr-dark); margin-bottom: 8px; line-height: 1.3; }
.product-card__desc { font-size: .82rem; color: var(--clr-text-mid); line-height: 1.55; margin-bottom: 8px; }
.product-card__stars { font-size: .82rem; color: var(--clr-gold); }
.product-card__stars span { color: var(--clr-text-light); }
.product-card__footer { padding: 12px 18px 18px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid var(--clr-border-green); }
.product-card__price { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--clr-green); }
.product-card__price-old { font-size: .82rem; color: var(--clr-text-light); text-decoration: line-through; margin-left: 4px; }

/* Section header */
.section-header { text-align: center; margin-bottom: 44px; }
.section-eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--clr-green-mid); margin-bottom: 10px;
}
.section-title { margin-bottom: 8px; }
.section-title span { color: var(--clr-green); }
.section-sub { color: var(--clr-text-mid); max-width: 560px; margin: 0 auto; font-size: .95rem; }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 18px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { font-size: 1.6rem; min-width: 44px; text-align: center; line-height: 1; }
.feature-item h4 { font-size: .95rem; margin-bottom: 4px; color: var(--clr-dark); }
.feature-item p { font-size: .84rem; color: var(--clr-text-mid); line-height: 1.6; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.review-card { background: white; border: 1px solid var(--clr-border-green); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); transition: box-shadow var(--trans), transform var(--trans); }
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--clr-green), var(--clr-dark)); color: white; font-weight: 700; font-size: .9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: .9rem; color: var(--clr-text); }
.review-date { font-size: .75rem; color: var(--clr-text-light); }
.review-stars { color: var(--clr-gold); font-size: 1rem; margin-bottom: 10px; }
.review-text { font-size: .85rem; color: var(--clr-text-mid); line-height: 1.65; margin-bottom: 12px; }
.review-product-tag { display: inline-block; font-size: .74rem; font-weight: 600; background: var(--clr-green-pale); color: var(--clr-green-mid); padding: 3px 10px; border-radius: 12px; border: 1px solid rgba(26,77,46,.15); margin-bottom: 10px; }
.review-photo { font-size: .78rem; color: var(--clr-text-light); }

/* Safety banner */
.safety-banner { display: flex; align-items: flex-start; gap: 20px; padding: 24px; }
.safety-banner__icon { font-size: 2rem; flex-shrink: 0; }
.safety-banner h4 { color: white; margin-bottom: 8px; }
.safety-banner p { color: rgba(255,252,250,.84); font-size: .88rem; line-height: 1.6; }

/* Info grid */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.info-section { background: white; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--clr-dark), var(--clr-green));
  padding: 70px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '♠ ♥ ♦ ♣ ♠ ♥ ♦ ♣';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 10rem; color: rgba(255,255,255,.02); white-space: nowrap; pointer-events: none;
}
.cta-band h2 { color: white; margin-bottom: 12px; }
.cta-band p { color: rgba(253,251,244,.75); margin-bottom: 28px; }

/* Footer */
.site-footer { background: var(--clr-dark); padding: 60px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__brand .site-logo { margin-bottom: 16px; }
.footer__tagline { color: rgba(253,251,244,.6); font-size: .84rem; line-height: 1.65; margin-bottom: 20px; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; color: rgba(253,251,244,.65); font-size: .84rem; margin-bottom: 8px; }
.footer__contact-item .icon { flex-shrink: 0; }
.footer__col h4 { color: white; margin-bottom: 16px; font-size: .95rem; font-family: var(--font-head); }
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul li a { color: rgba(253,251,244,.6); font-size: .84rem; transition: color var(--trans); }
.footer__col ul li a:hover { color: var(--clr-gold-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; }
.footer__legal { color: rgba(253,251,244,.45); font-size: .78rem; line-height: 1.6; margin-bottom: 12px; }
.footer__copy { color: rgba(253,251,244,.4); font-size: .78rem; }
.footer__copy a { color: rgba(201,168,76,.6); }
.footer__copy a:hover { color: var(--clr-gold-light); }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  background: var(--clr-dark); color: white;
  border-radius: var(--radius); padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  z-index: 999; box-shadow: 0 8px 32px rgba(33,28,24,.32);
  max-width: 760px; margin: 0 auto;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: .84rem; color: rgba(255,255,255,.8); margin: 0; flex: 1; }
.cookie-banner p a { color: var(--clr-gold-light); }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }

/* Age overlay */
.age-overlay {
  position: fixed; inset: 0; background: rgba(10,36,24,.92);
  backdrop-filter: blur(6px); z-index: 10000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.age-overlay.active { display: flex; animation: fadeIn .3s ease; }
.age-overlay.closing { animation: fadeOut .35s ease forwards; }
.age-modal {
  background: white; border-radius: var(--radius-xl);
  padding: 44px 32px 36px; max-width: 440px; width: 100%;
  text-align: center; box-shadow: 0 32px 80px rgba(0,0,0,.5);
  position: relative;
}
.age-modal__badge {
  display: inline-block; background: var(--clr-dark); color: var(--clr-gold-light);
  font-size: 1.1rem; font-weight: 900; width: 56px; height: 56px; line-height: 56px;
  border-radius: 50%; margin: 0 auto 20px; border: 3px solid var(--clr-gold);
}
.age-modal__title { font-size: 1.4rem; color: var(--clr-dark); margin-bottom: 12px; }
.age-modal__text { font-size: .9rem; color: var(--clr-text-mid); line-height: 1.6; margin-bottom: 10px; }
.age-modal__sub { font-size: .8rem; color: var(--clr-text-light); line-height: 1.6; margin-bottom: 24px; }
.age-modal__sub a { color: var(--clr-green); }
.age-modal__buttons { display: flex; flex-direction: column; gap: 10px; }
.age-modal__buttons button:first-child {
  background: linear-gradient(135deg, var(--clr-green-light), var(--clr-green));
  color: white; padding: 14px 20px; border: none; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 600; cursor: pointer;
  transition: all var(--trans); box-shadow: 0 4px 16px rgba(124,36,58,.28);
}
.age-modal__buttons button:first-child:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,36,58,.38); }
.age-modal__buttons button:last-child {
  background: none; border: 1px solid var(--clr-border-green);
  color: var(--clr-text-mid); padding: 11px 20px;
  border-radius: var(--radius-sm); font-size: .85rem; cursor: pointer;
  transition: all var(--trans);
}
.age-modal__buttons button:last-child:hover { background: var(--clr-green-pale); }

@media(max-width:768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; gap: 32px; }
  .combo-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cart-sidebar { width: 100%; right: -100%; }
}
@media(max-width:480px) {
  .combo-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .page-hero {
  padding: 72px 0 78px;
  background:
    linear-gradient(135deg, rgba(43,24,59,.9) 0%, rgba(110,75,184,.78) 100%),
    url('../images/backgrounds/friends-game-night.jpg') center/cover no-repeat;
  position: relative; overflow: hidden;
}
}

/* Product card SVG images */
.product-card__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card__image-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Review photo avatar */
.review-photo img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-border-green);
  margin-top: 8px;
  display: block;
}


/* Aire de jeux media polish */
.product-card__image { overflow: hidden; }
.product-card__image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.01); transition: transform .45s ease, filter .35s ease;
}
.product-card:hover .product-card__image img {
  transform: scale(1.08); filter: saturate(1.06) contrast(1.03);
}
.review-avatar.review-avatar--photo {
  width: 58px; height: 58px; padding: 0; overflow: hidden;
  border: 2px solid rgba(217,194,163,.55); background: #fff;
  box-shadow: 0 8px 20px rgba(43,24,59,.16);
}
.review-avatar.review-avatar--photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.review-card__media {
  aspect-ratio: 1 / 1; width: 100%; border-radius: 16px; overflow: hidden;
  margin-bottom: 18px; background: #f4efea;
}
.review-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.footer__brand .site-logo img { filter: none !important; opacity: 1 !important; }
.email-plain { user-select: all; }


/* Aire de jeux refinements */
.site-header { background: rgba(255,252,250,.96); }
.hero::before, .page-hero::before {
  background: linear-gradient(135deg, rgba(255,252,250,.90), rgba(245,235,221,.70));
}
.product-card, .inner-card, .review-card, .feature-item {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(124,36,58,.08);
}
.product-card__cat, .section-eyebrow, .page-hero__eyebrow {
  letter-spacing: .14em;
}
.email-plain { font-weight: 600; letter-spacing: .01em; }


/* ================================================================
   AIRE DE JEUX V2 — LOCALISATION, PHOTO & ANIMATIONS
================================================================ */
.hero.hero--editorial {
  min-height: 720px;
  padding: 94px 0 96px;
  background:
    linear-gradient(115deg, rgba(22,22,22,.88) 0%, rgba(41,72,59,.58) 44%, rgba(124,36,58,.52) 100%),
    url('../images/backgrounds/friends-game-night.jpg') center/cover no-repeat;
}
.hero.hero--editorial::before {
  background:
    linear-gradient(90deg, rgba(17,18,20,.80) 0%, rgba(17,18,20,.42) 42%, rgba(17,18,20,.12) 100%),
    radial-gradient(circle at 82% 18%, rgba(216,193,160,.18) 0%, transparent 30%),
    radial-gradient(circle at 16% 24%, rgba(124,36,58,.26) 0%, transparent 28%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 42px;
  align-items: center;
}
.hero__panel {
  max-width: 100%;
  padding: 34px 34px 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(22,22,24,.54), rgba(22,22,24,.36));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}
.hero__panel .hero__eyebrow {
  background: rgba(255,255,255,.10);
  border-color: rgba(216,193,160,.35);
  color: rgba(255,255,255,.92);
}
.hero.hero--editorial .hero__title {
  font-size: clamp(2.45rem, 6vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  text-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.hero.hero--editorial .hero__title span { color: #F5EBDD; }
.hero.hero--editorial .hero__sub {
  color: rgba(255,255,255,.90);
  font-size: 1.08rem;
  max-width: 96%;
}
.hero.hero--editorial .hero__disclaimer {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  border-color: rgba(216,193,160,.26);
}
.hero.hero--editorial .hero__badge {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
}
.hero-showcase {
  min-height: 520px;
}
.hero-showcase--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: start;
}
.hero-shot {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 26px 60px rgba(10,10,10,.30);
  background: rgba(255,255,255,.04);
  min-height: 220px;
}
.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.44));
}
.hero-shot figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: white;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.hero-shot--wide {
  grid-column: 1 / -1;
  min-height: 318px;
}
.hero-shot--left,
.hero-shot--right {
  min-height: 210px;
}
.hero-notes {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}
.hero-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,252,250,.94);
  color: var(--clr-dark);
  font-size: .8rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
}
.home-mosaic { background: linear-gradient(180deg, #fffdfb 0%, #f8f2ea 100%); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.18fr .92fr .92fr;
  gap: 18px;
  align-items: stretch;
}
.photo-tile {
  position: relative;
  min-height: 230px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(124,36,58,.08);
  transform-origin: center;
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .8s ease;
}
.photo-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 10%, rgba(0,0,0,.60) 100%);
}
.photo-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: white;
}
.photo-caption strong { font-size: 1rem; }
.photo-caption span { font-size: .84rem; color: rgba(255,255,255,.82); }
.photo-tile--tall { grid-row: span 2; min-height: 478px; }
.photo-tile--wide { min-height: 320px; }
.photo-tile:hover img { transform: scale(1.08); filter: saturate(1.08); }
.editorial-band {
  padding: 26px 0 80px;
  background: linear-gradient(180deg, #f8f2ea 0%, #fffdfa 100%);
}
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0,1.02fr) minmax(0,.98fr);
  gap: 28px;
  align-items: center;
}
.editorial-copy p { color: var(--clr-text-mid); line-height: 1.8; margin-bottom: 18px; }
.editorial-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.editorial-point {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(124,36,58,.08);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.editorial-point strong { color: var(--clr-dark); }
.editorial-point span { color: var(--clr-text-mid); font-size: .9rem; }
.editorial-stack,
.delivery-visual {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: stretch;
}
.stack-card,
.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 250px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(124,36,58,.08);
}
.stack-card img,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stack-card figcaption,
.media-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 20px;
  color: white;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.72));
}
.stack-card--large { min-height: 360px; }
.stack-card--small { min-height: 360px; }
.story-gallery {
  display: grid;
  grid-template-columns: 1.18fr .82fr .82fr;
  gap: 18px;
}
.delivery-visual { margin: 0 auto 34px; max-width: 980px; }
.delivery-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  margin: 0 auto 42px;
  max-width: 980px;
}
.step-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(124,36,58,.08);
  border-radius: 22px;
  padding: 24px 18px;
  box-shadow: var(--shadow-sm);
}
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-green-pale);
  color: var(--clr-green);
  font-weight: 800;
  margin-bottom: 12px;
}
.step-card h4 { margin-bottom: 8px; font-size: 1rem; }
.step-card p { color: var(--clr-text-mid); font-size: .88rem; line-height: 1.65; }
.media-card__overlay h3 { color: white; margin-bottom: 8px; }
.media-card__overlay p { color: rgba(255,255,255,.84); font-size: .9rem; margin: 0; }
.page-hero {
  background:
    linear-gradient(115deg, rgba(20,20,20,.84) 0%, rgba(41,72,59,.56) 48%, rgba(124,36,58,.48) 100%),
    url('../images/backgrounds/friends-game-night.jpg') center/cover no-repeat;
}
.page-hero::before {
  background: linear-gradient(90deg, rgba(18,18,18,.56), rgba(18,18,18,.10));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__eyebrow {
  background: rgba(255,255,255,.10);
  border-color: rgba(216,193,160,.34);
  color: rgba(255,255,255,.92);
}
.page-hero__sub { color: rgba(255,255,255,.86); }
.site-footer { position: relative; overflow: hidden; }
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 18%, rgba(216,193,160,.08), transparent 26%), radial-gradient(circle at 88% 12%, rgba(124,36,58,.08), transparent 24%);
  pointer-events: none;
}
@media (max-width: 1000px) {
  .hero-grid,
  .editorial-grid,
  .delivery-visual,
  .story-gallery,
  .gallery-grid { grid-template-columns: 1fr; }
  .delivery-steps { grid-template-columns: 1fr 1fr; }
  .hero-showcase { min-height: 0; }
  .hero-showcase--grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero.hero--editorial { min-height: auto; padding: 76px 0 68px; }
  .hero__panel { padding: 24px 22px; }
  .hero.hero--editorial .hero__title { font-size: clamp(2rem, 10vw, 3.2rem); }
  .hero-showcase { min-height: 0; }
  .hero-showcase--grid { grid-template-columns: 1fr; }
  .hero-shot--wide,
  .hero-shot--left,
  .hero-shot--right { min-height: 220px; }
  .hero-note { width: 100%; justify-content: center; }
  .gallery-grid, .story-gallery, .editorial-grid, .delivery-visual { grid-template-columns: 1fr; }
  .photo-tile--tall, .photo-tile--wide, .stack-card--large, .stack-card--small { min-height: 240px; }
  .delivery-steps { grid-template-columns: 1fr; }
}
