/* =====================
   VARIABLES
   ===================== */
:root {
  --gold: #bf9660;
  --gold-dark: #a07840;
  --gold-light: #d4b080;
  --gray: #5a5a5a;
  --gray-dark: #3a3a3a;
  --gray-light: #8a8a8a;
  --cream: #f9f7f4;
  --cream-dark: #e8e0d4;
  --white: #ffffff;
  --success: #4caf50;
  --warning: #ff9800;
  --danger: #f44336;
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;
  --shadow: 0 2px 15px rgba(90,90,90,0.12);
  --shadow-hover: 0 6px 25px rgba(90,90,90,0.2);
  --radius: 6px;
  --transition: all 0.3s ease;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: var(--font-body);
  color: var(--gray);
  background-color: var(--cream);
  margin: 0;
  line-height: 1.6;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  color: var(--gray-dark);
  line-height: 1.3;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; height: auto; }

/* =====================
   HEADER
   ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  height: 70px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.site-header.scrolled { height: 58px; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 40px; }
.logo-text {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--gray-dark);
  letter-spacing: 2px;
}
.main-nav { display: flex; gap: 2px; align-items: center; }
.main-nav a {
  padding: 8px 14px;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold);
  background: rgba(191,150,96,0.08);
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  position: relative;
  background: var(--gold);
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cart-btn:hover { background: var(--gold-dark); color: var(--white) !important; }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--danger);
  color: white;
  font-size: 0.7rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: bold;
}
.mobile-menu-btn {
  background: none; border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--gray);
  display: none;
}

/* =====================
   HERO / CARROUSEL
   ===================== */
.hero-section {
  height: 85vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}
.hero-slide {
  height: 85vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,58,58,0.6) 0%, rgba(58,58,58,0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 700px;
}
.hero-content h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}
.swiper-pagination-bullet { background: rgba(255,255,255,0.6); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--gold); }
.swiper-button-next, .swiper-button-prev { color: var(--gold) !important; }

/* =====================
   BOUTONS
   ===================== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: white !important;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow); color: white !important; }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn-outline:hover { background: var(--gold); color: white !important; }
.btn-sm { padding: 7px 16px !important; font-size: 0.85rem !important; }
.btn-danger { background: var(--danger) !important; }
.btn-danger:hover { background: #c62828 !important; }

/* =====================
   SECTIONS
   ===================== */
.section { padding: 80px 0; }
.section-light { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--gray-dark); color: white; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 { margin-bottom: 12px; }
.section-title .subtitle {
  color: var(--gray-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* =====================
   CARDS PRODUITS
   ===================== */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-card-img {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.delivery-badge {
  position: absolute;
  top: 10px; right: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-delivery { background: var(--success); color: white; }
.badge-pickup { background: var(--warning); color: white; }
.product-card-body { padding: 18px; }
.product-card-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.product-price { font-size: 1.25rem; color: var(--gold); font-weight: 700; margin-bottom: 14px; }

/* =====================
   CARDS BOUTIQUES / SHOP
   ===================== */
.shop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: block;
  color: inherit !important;
  text-decoration: none !important;
  height: 100%;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.shop-card-img { height: 200px; overflow: hidden; background: var(--cream-dark); }
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.shop-card-img .icon-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.shop-card:hover .shop-card-img img { transform: scale(1.05); }
.shop-card-body { padding: 20px; }
.shop-card-body h3 { color: var(--gray-dark); margin-bottom: 8px; }
.shop-card-body p { color: var(--gray-light); font-size: 0.9rem; margin-bottom: 12px; }
.shop-location { display: flex; align-items: center; gap: 6px; color: var(--gold); font-size: 0.85rem; }

/* =====================
   FORMULAIRES
   ===================== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-dark);
}
.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--gold); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid var(--success); }
.alert-danger { background: #ffebee; color: #c62828; border-left: 4px solid var(--danger); }
.alert-info { background: #e3f2fd; color: #1565c0; border-left: 4px solid #2196f3; }

/* =====================
   BREADCRUMB
   ===================== */
.breadcrumb-bar {
  background: var(--cream-dark);
  padding: 12px 0;
  font-size: 0.85rem;
  margin-top: 70px;
}
.breadcrumb-bar a { color: var(--gray-light); }
.breadcrumb-bar a:hover { color: var(--gold); }
.breadcrumb-bar span { color: var(--gray); }
.breadcrumb-separator { margin: 0 8px; color: var(--gray-light); }

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: var(--gray-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 30px;
}
.site-footer .logo-text { color: white; }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 8px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white !important;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); }
.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--font-title);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }

/* =====================
   LEAFLET MAP
   ===================== */
#map { height: 450px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* =====================
   PANIER
   ===================== */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { padding: 12px; background: var(--cream-dark); text-align: left; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gray-light); }
.cart-table td { padding: 14px 12px; border-bottom: 1px solid var(--cream-dark); vertical-align: middle; }
.cart-total-box { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block !important; }
}
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-section { margin-top: 60px; }
  .breadcrumb-bar { margin-top: 60px; }
  .section { padding: 50px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .site-header { height: 60px; }
}
