:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-light: #666666;
  --accent: #c9a87c;
  --accent-light: #e8dfd1;
  --brown: #8b6914;
  --border: rgba(26, 26, 26, 0.08);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.preview-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  text-align: center;
  padding: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

.logo-mark {
  font-size: 1.6rem;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text);
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--brown);
}

.btn-primary.full {
  display: block;
  text-align: center;
  margin-top: 24px;
}

.btn-secondary {
  background: white;
  color: var(--text);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid var(--border);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tag {
  background: var(--accent-light);
  color: var(--brown);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 440px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.hero-visual {
  position: relative;
  height: 420px;
  background: linear-gradient(135deg, var(--accent-light) 0%, #e8ddd4 50%, #d4c4b0 100%);
  border-radius: 20px;
  overflow: hidden;
}

.badge-float {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-icon {
  font-size: 1.4rem;
}

.badge-float strong {
  display: block;
  font-size: 1.2rem;
}

.badge-float span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 40px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-light);
  font-weight: 300;
}

/* Produits */
.produits {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card.featured {
  border: 2px solid var(--accent);
  position: relative;
}

.product-card.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px dashed var(--border);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-image {
  height: 140px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.price {
  font-weight: 600;
  color: var(--brown);
  font-size: 1.1rem;
}

.plus {
  font-size: 3rem;
  color: var(--border);
  margin-bottom: 8px;
}

/* Pâtisseries */
.patisseries {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pastry-showcase {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pastry-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.pastry-item.reverse {
  direction: rtl;
}

.pastry-item.reverse > * {
  direction: ltr;
}

.pastry-visual {
  height: 300px;
  border-radius: 16px;
}

.pastry-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.pastry-info p {
  color: var(--text-light);
  margin-bottom: 16px;
}

/* Horaires */
.horaires-section {
  padding: 80px 40px;
  max-width: 600px;
  margin: 0 auto;
}

.horaires-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}

.horaires-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 32px;
}

.horaires-list {
  margin-bottom: 32px;
}

.jour {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

.jour:last-child {
  border-bottom: none;
}

.contact-info {
  margin: 32px 0;
  padding: 24px;
  background: var(--bg);
  border-radius: 12px;
}

.contact-info p {
  margin: 8px 0;
  color: var(--text-light);
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pastry-item {
    grid-template-columns: 1fr;
  }
  
  .pastry-item.reverse {
    direction: ltr;
  }
  
  .header {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 24px;
  }
  
  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .horaires-card {
    padding: 32px 24px;
  }
}
