@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --bordeaux: #3D010E;
  --bordeaux2: #4A020F;
  --bordeaux-light: #6B1025;
  --ivoire: #FFFBE5;
  --ivoire-dark: #F5EFD0;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-light: #555;
  --green: #2E7D32;
  --shadow: 0 2px 20px rgba(61,1,14,0.08);
  --shadow-hover: 0 8px 30px rgba(61,1,14,0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', 'SF Pro Display', serif; line-height: 1.3; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(61,1,14,0.08); transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-content {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--bordeaux); letter-spacing: 1px; }
.nav-logo span { color: var(--bordeaux2); }
.nav-links { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text); position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0;
  height: 2px; background: var(--bordeaux); transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--bordeaux); }
.nav-cta {
  background: var(--bordeaux) !important; color: var(--white) !important;
  padding: 10px 24px !important; border-radius: 50px; font-size: 0.8rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--bordeaux2) !important; transform: translateY(-1px); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.menu-toggle span { width: 25px; height: 2px; background: var(--text); transition: var(--transition); display: block; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--ivoire) 0%, var(--white) 50%, var(--ivoire) 100%);
  padding-top: 70px; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,1,14,0.05) 0%, transparent 70%);
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; max-width: 1200px; margin: 0 auto; padding: 40px 20px;
}
.hero-text { z-index: 1; }
.hero-badge {
  display: inline-block; background: rgba(61,1,14,0.08); color: var(--bordeaux);
  padding: 8px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px;
}
.hero-text h1 { font-size: 3.5rem; color: var(--text); margin-bottom: 20px; line-height: 1.15; }
.hero-text h1 em { color: var(--bordeaux); font-style: italic; }
.hero-text p { font-size: 1.15rem; color: var(--text-light); margin-bottom: 36px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; z-index: 1; }
.hero-image-wrapper { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-hover); }
.hero-image-wrapper img { width: 100%; height: 500px; object-fit: cover; }
.hero-image-wrapper .placeholder-img {
  width: 100%; height: 500px;
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux2));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.5rem; text-align: center; padding: 40px;
}
.hero-image-wrapper::after {
  content: ''; position: absolute; bottom: -15px; right: -15px;
  width: 120px; height: 120px; border: 3px solid var(--bordeaux); border-radius: 20px; z-index: -1;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: 'SF Pro Display', -apple-system, sans-serif;
  font-size: 0.95rem; font-weight: 700; cursor: pointer; border: none;
  transition: var(--transition); text-transform: uppercase; letter-spacing: 1px;
}
.btn-primary { background: var(--bordeaux); color: var(--white); }
.btn-primary:hover { background: var(--bordeaux2); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(61,1,14,0.25); }
.btn-secondary { background: transparent; color: var(--bordeaux); border: 2px solid var(--bordeaux); }
.btn-secondary:hover { background: var(--bordeaux); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-ivoire { background: var(--ivoire); color: var(--bordeaux); }
.btn-ivoire:hover { background: var(--ivoire-dark); transform: translateY(-2px); }

/* ===================== SECTIONS ===================== */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.section-line { width: 60px; height: 3px; background: var(--bordeaux); margin: 20px auto 0; border-radius: 2px; }

/* ===================== FEATURES ===================== */
.features { background: var(--ivoire); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card { background: var(--white); padding: 40px 30px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.feature-icon { width: 70px; height: 70px; background: rgba(61,1,14,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* ===================== CATEGORIES GRID ===================== */
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.category-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); cursor: pointer; height: 280px;
}
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.category-card .cat-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.category-card .cat-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white);
}
.category-card:hover .cat-img, .category-card:hover .cat-placeholder { transform: scale(1.05); }
.category-card .cat-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(61,1,14,0.8), transparent);
  padding: 30px 20px 20px; z-index: 2;
}
.category-card .cat-overlay h3 { color: var(--white); font-size: 1.4rem; }

/* ===================== TESTIMONIALS ===================== */
.testimonials { background: var(--ivoire); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: var(--white); padding: 35px; border-radius: var(--radius); box-shadow: var(--shadow); position: relative; }
.testimonial-card::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--bordeaux); opacity: 0.15; position: absolute; top: 10px; left: 20px; line-height: 1; }
.testimonial-card p { font-style: italic; color: var(--text-light); margin-bottom: 20px; font-size: 0.95rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 45px; height: 45px; border-radius: 50%; background: var(--bordeaux); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.9rem; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-location { font-size: 0.8rem; color: var(--text-light); }

/* ===================== CTA SECTION ===================== */
.cta-section { background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux2) 100%); color: var(--white); text-align: center; padding: 80px 0; }
.cta-section h2 { font-size: 2.5rem; margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-section .btn { background: var(--ivoire); color: var(--bordeaux); }
.cta-section .btn:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

/* ===================== FOOTER ===================== */
.footer { background: var(--bordeaux); color: var(--white); padding: 60px 0 30px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .nav-logo { color: var(--ivoire); font-size: 1.8rem; }
.footer-brand .nav-logo span { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 280px; margin-top: 16px; }
.footer h4 { font-size: 1rem; margin-bottom: 20px; color: var(--ivoire); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links a:hover { color: var(--white); }
.social-links { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.9rem; transition: var(--transition); }
.social-link:hover { background: var(--bordeaux2); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ===================== PAGE HEADER ===================== */
.page-header { padding: 140px 0 60px; background: linear-gradient(135deg, var(--ivoire) 0%, var(--white) 100%); text-align: center; }
.page-header h1 { font-size: 3rem; margin-bottom: 12px; color: var(--bordeaux); }
.page-header p { font-size: 1.1rem; color: var(--text-light); }

/* ===================== GALLERY ===================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); background: var(--white); cursor: pointer; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.product-card .card-img { height: 300px; overflow: hidden; position: relative; }
.product-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .card-img img { transform: scale(1.05); }
.product-card .card-img .img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.1rem;
}
.product-card .card-body { padding: 20px; }
.product-card .card-category { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--bordeaux); font-weight: 700; margin-bottom: 6px; }
.product-card .card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.product-card .card-body p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 10px; }
.product-prices { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.price-tag { font-weight: 700; font-size: 1rem; }
.price-tag.main { color: var(--bordeaux); font-size: 1.1rem; }
.price-tag.alt { color: var(--text-light); font-size: 0.8rem; }

/* ===================== PRODUCT MODAL ===================== */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(61,1,14,0.5); display: none; align-items: center;
  justify-content: center; z-index: 2000; padding: 20px; overflow-y: auto;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius); padding: 0;
  max-width: 900px; width: 100%; max-height: 90vh; overflow-y: auto;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close {
  position: absolute; top: 15px; right: 15px; width: 36px; height: 36px;
  border-radius: 50%; border: none; background: rgba(0,0,0,0.1);
  font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 10;
}
.modal-close:hover { background: var(--bordeaux); color: var(--white); }
.product-modal-content { display: grid; grid-template-columns: 1fr 1fr; }
.product-modal-image { position: relative; }
.product-modal-image img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; border-radius: var(--radius) 0 0 var(--radius); }
.product-modal-image .img-placeholder {
  width: 100%; min-height: 400px; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.3rem;
  border-radius: var(--radius) 0 0 var(--radius);
}
.product-modal-details { padding: 35px; position: relative; }
.product-modal-details h2 { font-size: 1.6rem; margin-bottom: 8px; }
.product-modal-details .modal-category { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--bordeaux); font-weight: 700; margin-bottom: 16px; }
.product-modal-details .modal-desc { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; }
.product-modal-prices { margin-bottom: 24px; }
.product-modal-prices .price-main { font-size: 1.5rem; font-weight: 700; color: var(--bordeaux); }
.product-modal-prices .price-alt { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }

.option-group { margin-bottom: 20px; }
.option-group label { display: block; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.option-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.option-btn {
  padding: 8px 16px; border: 2px solid var(--ivoire-dark); border-radius: 8px;
  background: var(--white); cursor: pointer; font-family: 'SF Pro Display', -apple-system, sans-serif;
  font-size: 0.85rem; font-weight: 600; transition: var(--transition);
}
.option-btn:hover { border-color: var(--bordeaux); }
.option-btn.selected { background: var(--bordeaux); color: var(--white); border-color: var(--bordeaux); }

/* ===================== CART ===================== */
.cart-badge {
  position: absolute; top: -5px; right: -10px; background: var(--bordeaux);
  color: var(--white); font-size: 0.65rem; font-weight: 700; width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.cart-icon-wrapper { position: relative; }
.cart-items { margin-bottom: 24px; }
.cart-item {
  display: flex; gap: 16px; align-items: center; padding: 16px;
  background: var(--ivoire); border-radius: 10px; margin-bottom: 12px;
}
.cart-item-img { width: 70px; height: 70px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.95rem; margin-bottom: 4px; }
.cart-item-info p { font-size: 0.8rem; color: var(--text-light); }
.cart-item-price { font-weight: 700; color: var(--bordeaux); font-size: 1rem; white-space: nowrap; }
.cart-item-remove { background: none; border: none; color: #c00; cursor: pointer; font-size: 1.2rem; padding: 4px; }
.cart-total { display: flex; justify-content: space-between; padding: 16px; background: var(--bordeaux); color: var(--white); border-radius: 10px; font-weight: 700; font-size: 1.1rem; }

/* ===================== CALENDAR ===================== */
.calendars-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.calendars-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.calendars-nav h3 { font-size: 1.1rem; font-weight: 700; }
.calendar-container { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px; }
.calendar-header { display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.calendar-header h3 { font-size: 0.95rem; font-weight: 700; }
.calendar-nav { display: flex; gap: 6px; }
.calendar-nav button {
  width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--ivoire-dark);
  background: var(--white); cursor: pointer; font-size: 0.9rem; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.calendar-nav button:hover { background: var(--bordeaux); color: var(--white); border-color: var(--bordeaux); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.calendar-day-name {
  text-align: center; font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--bordeaux); padding: 6px 0; opacity: 0.6;
}
.calendar-day {
  width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 0.8rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); border: none; background: none;
  font-family: 'SF Pro Display', -apple-system, sans-serif; position: relative;
}
.calendar-day:hover:not(.disabled):not(.booked):not(.production) { background: rgba(61,1,14,0.06); color: var(--bordeaux); }
.calendar-day.today { border: 2px solid var(--bordeaux); border-radius: 8px; }
.calendar-day.selected { background: var(--bordeaux); color: var(--white); border-radius: 8px; box-shadow: 0 2px 8px rgba(61,1,14,0.3); }
.calendar-day.booked {
  background: rgba(61,1,14,0.12); color: var(--bordeaux); cursor: not-allowed; font-weight: 700;
}
.calendar-day.booked::after {
  content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--bordeaux);
}
.calendar-day.production {
  background: var(--ivoire-dark); color: #bbb; cursor: not-allowed;
}
.calendar-day.disabled { color: #ddd; cursor: default; }
.calendar-day.empty { cursor: default; }
.calendar-legend { display: flex; gap: 14px; margin-top: 14px; flex-wrap: wrap; justify-content: center; }
.legend-item { display: flex; align-items: center; gap: 5px; font-size: 0.7rem; color: var(--text-light); }
.legend-dot { width: 10px; height: 10px; border-radius: 3px; }
.legend-dot.available { background: var(--white); border: 1.5px solid var(--bordeaux); }
.legend-dot.booked { background: rgba(61,1,14,0.12); }
.legend-dot.production-dot { background: var(--ivoire-dark); }
.legend-dot.selected { background: var(--bordeaux); }
.delivery-info {
  background: var(--ivoire); padding: 12px 16px; border-radius: 8px;
  margin-top: 14px; text-align: center; font-size: 0.85rem;
}
.delivery-info strong { color: var(--bordeaux); }

/* ===================== ORDER STATUS TRACKER ===================== */
.status-tracker { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; position: relative; }
.status-tracker::before {
  content: ''; position: absolute; top: 50%; left: 24px; right: 24px;
  height: 3px; background: var(--ivoire-dark); transform: translateY(-50%); z-index: 0;
}
.status-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative; z-index: 1;
}
.status-dot {
  width: 32px; height: 32px; border-radius: 50%; background: var(--ivoire-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--text-light); transition: var(--transition);
}
.status-step.active .status-dot { background: var(--bordeaux); color: var(--white); }
.status-step.done .status-dot { background: var(--green); color: var(--white); }
.status-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; color: var(--text-light); text-align: center; max-width: 70px; }
.status-step.active .status-label { color: var(--bordeaux); }
.status-step.done .status-label { color: var(--green); }

/* ===================== ORDER FORM ===================== */
.order-section { background: var(--ivoire); }
.order-container { max-width: 900px; margin: 0 auto; }
.order-form { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 35px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; color: var(--text); }
.form-group .optional { font-weight: 400; color: var(--text-light); text-transform: none; letter-spacing: 0; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border: 2px solid var(--ivoire-dark); border-radius: 10px;
  font-family: 'SF Pro Display', -apple-system, sans-serif; font-size: 0.95rem; transition: var(--transition);
  background: var(--white); color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--bordeaux); box-shadow: 0 0 0 4px rgba(61,1,14,0.08); }
.form-group textarea { height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-step { display: none; }
.form-step.active { display: block; }
.step-header { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; }
.step-number { width: 36px; height: 36px; border-radius: 50%; background: var(--bordeaux); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }
.step-header h3 { font-size: 1.2rem; }
.step-buttons { display: flex; gap: 12px; margin-top: 24px; }

/* ===================== WAVE PAYMENT ===================== */
.wave-payment-box {
  background: var(--ivoire); border: 2px solid var(--ivoire-dark); border-radius: var(--radius);
  padding: 30px; text-align: center; margin: 20px 0;
}
.wave-payment-box img { max-width: 200px; margin: 16px auto; }
.wave-payment-box h4 { color: var(--bordeaux); margin-bottom: 8px; }
.wave-payment-box p { font-size: 0.9rem; color: var(--text-light); }
.wave-payment-box a { color: var(--bordeaux); font-weight: 700; word-break: break-all; }

/* ===================== ABOUT ===================== */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image .placeholder-img, .about-image img { height: 500px; border-radius: var(--radius); object-fit: cover; width: 100%; }
.about-image .placeholder-img { background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux2)); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.3rem; }
.about-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1.05rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.stat-item { text-align: center; padding: 20px; background: var(--ivoire); border-radius: var(--radius); }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--bordeaux); font-weight: 700; }
.stat-label { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }
.values-section { background: var(--ivoire); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card { background: var(--white); padding: 35px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 0.9rem; }

/* ===================== CONTACT ===================== */
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 30px; }
.contact-icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(61,1,14,0.06); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p { color: var(--text-light); font-size: 0.9rem; }
.contact-form { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 35px; }

/* ===================== CONFIRMATION MODAL ===================== */
.confirm-modal { max-width: 520px; padding: 40px; text-align: center; }
.modal-icon { width: 70px; height: 70px; border-radius: 50%; background: rgba(46,125,50,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: var(--green); }
.confirm-modal h3 { font-size: 1.5rem; margin-bottom: 16px; color: var(--green); }
.order-summary { background: var(--ivoire); border-radius: 10px; padding: 20px; text-align: left; margin: 20px 0; }
.order-summary-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.9rem; }
.order-summary-row:last-child { border-bottom: none; }
.order-summary-row .label { color: var(--text-light); }
.order-summary-row .value { font-weight: 700; }

/* ===================== FILE UPLOAD ===================== */
.file-upload-zone {
  border: 2px dashed var(--ivoire-dark); border-radius: 10px; padding: 30px;
  text-align: center; cursor: pointer; transition: var(--transition);
}
.file-upload-zone:hover { border-color: var(--bordeaux); background: rgba(61,1,14,0.02); }
.file-upload-zone p { color: var(--text-light); font-size: 0.85rem; }
.file-upload-zone .preview-img { max-width: 150px; max-height: 150px; border-radius: 10px; margin: 12px auto 0; object-fit: cover; }

/* ===================== BACK / BREADCRUMB ===================== */
.back-btn { display: inline-flex; align-items: center; gap: 8px; color: var(--bordeaux); font-weight: 700; font-size: 0.9rem; margin-bottom: 24px; cursor: pointer; }
.back-btn:hover { color: var(--bordeaux2); }
.breadcrumb { padding: 12px 0; font-size: 0.85rem; color: var(--text-light); }
.breadcrumb a { color: var(--bordeaux); }
.breadcrumb span { margin: 0 8px; }
.loading { text-align: center; padding: 60px 0; color: var(--text-light); }
.spinner { width: 40px; height: 40px; border: 3px solid var(--ivoire-dark); border-top-color: var(--bordeaux); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 16px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== FOOTER BADGE ===================== */
.footer-open-badge {
  display: inline-block; background: rgba(46,125,50,0.15); color: #4CAF50;
  padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  margin-top: 12px; letter-spacing: 0.5px;
}

/* ===================== CART TOAST ===================== */
.cart-toast {
  position: fixed; bottom: 20px; right: 20px; background: var(--bordeaux); color: var(--white);
  padding: 14px 20px; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  z-index: 3000; display: none; align-items: center; gap: 12px; font-size: 0.9rem; font-weight: 600;
  animation: slideUp 0.3s ease;
}
.cart-toast.show { display: flex; }
.cart-toast a { color: var(--ivoire); text-decoration: underline; font-weight: 700; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .calendars-row { grid-template-columns: 1fr; }
  .menu-toggle { display: flex; }
  .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 0; box-shadow: var(--shadow); transform: translateY(-120%); transition: var(--transition); z-index: 999; }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid var(--ivoire); }
  .nav-links a { display: block; padding: 14px 0; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 30px; padding-top: 10px; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-text p { margin: 0 auto 20px; font-size: 1rem; }
  .hero-buttons { justify-content: center; }
  .hero-image-wrapper::after { display: none; }
  .hero-image-wrapper img, .hero-image-wrapper .placeholder-img { height: 250px; }
  .section-header h2 { font-size: 1.8rem; }
  .section-header p { font-size: 0.9rem; }
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 30px; }

  /* Features grid 2 colonnes mobile */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature-card { padding: 20px 14px; }
  .feature-icon { width: 50px; height: 50px; font-size: 1.3rem; margin-bottom: 10px; }
  .feature-card h3 { font-size: 1rem; margin-bottom: 6px; }
  .feature-card p { font-size: 0.8rem; }

  /* Categories 2 colonnes mobile */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-card { height: 180px; }
  .category-card .cat-overlay h3 { font-size: 1.1rem; }

  /* Gallery 2 colonnes mobile */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card .card-img { height: 180px; }
  .product-card .card-body { padding: 12px; }
  .product-card .card-body h3 { font-size: 0.95rem; }
  .product-card .card-body p { font-size: 0.78rem; margin-bottom: 6px; }
  .price-tag.main { font-size: 0.95rem; }

  /* Product modal compact */
  .product-modal-content { grid-template-columns: 1fr; }
  .product-modal-image img, .product-modal-image .img-placeholder { min-height: 200px; max-height: 220px; border-radius: var(--radius) var(--radius) 0 0; }
  .product-modal-details { padding: 16px; }
  .product-modal-details h2 { font-size: 1.2rem; margin-bottom: 4px; }
  .product-modal-details .modal-desc { font-size: 0.82rem; margin-bottom: 10px; }
  .product-modal-prices { margin-bottom: 12px; }
  .product-modal-prices .price-main { font-size: 1.2rem; }
  .option-group { margin-bottom: 10px; }
  .option-group label { font-size: 0.72rem; margin-bottom: 5px; }
  .option-btn { padding: 6px 12px; font-size: 0.78rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* About */
  .about-content, .contact-content { grid-template-columns: 1fr; gap: 30px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .values-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-content { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer { padding: 40px 0 20px; }

  /* Page header */
  .page-header { padding: 100px 0 30px; }
  .page-header h1 { font-size: 1.8rem; }

  /* Forms compact */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 12px; }
  .form-group input, .form-group textarea, .form-group select { padding: 11px 14px; font-size: 0.88rem; }
  .form-group label { font-size: 0.72rem; margin-bottom: 5px; }
  .order-form { padding: 20px; }
  .step-header { margin-bottom: 16px; }
  .step-header h3 { font-size: 1rem; }
  .step-number { width: 28px; height: 28px; font-size: 0.8rem; }
  .step-buttons { margin-top: 14px; gap: 8px; }
  .step-buttons .btn { padding: 10px 16px; font-size: 0.7rem; letter-spacing: 0.5px; border-radius: 10px; }

  /* Cart compact */
  .cart-item { padding: 10px; gap: 10px; }
  .cart-item-img { width: 55px; height: 55px; }
  .cart-item-info h4 { font-size: 0.85rem; }
  .cart-item-info p { font-size: 0.72rem; }
  .cart-item-price { font-size: 0.85rem; }
  .cart-total { font-size: 0.95rem; padding: 12px; }

  /* Wave payment compact */
  .wave-payment-box { padding: 16px; margin: 12px 0; }
  .wave-payment-box img { max-width: 150px; margin: 10px auto; }
  .wave-payment-box h4 { font-size: 1rem; }
  .wave-payment-box p { font-size: 0.8rem; }
  .file-upload-zone { padding: 16px; }
  .file-upload-zone p { font-size: 0.78rem; }

  /* Calendar compact */
  .calendar-container { padding: 10px; }
  .calendars-nav .btn { padding: 8px 14px; font-size: 0.68rem; letter-spacing: 0.5px; border-radius: 10px; }
  .calendars-nav h3 { font-size: 0.9rem; }

  .cta-section h2 { font-size: 1.6rem; }
  .cta-section p { font-size: 0.9rem; }
  .cta-section { padding: 50px 0; }

  /* Confirmation modal compact */
  .confirm-modal { padding: 24px 16px; }
  .confirm-modal h3 { font-size: 1.2rem; }
  .modal-icon { width: 50px; height: 50px; font-size: 1.5rem; margin-bottom: 12px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.8rem; }
  .hero-image-wrapper img, .hero-image-wrapper .placeholder-img { height: 200px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .feature-card { padding: 16px 10px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .footer-content { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { padding: 10px 18px; font-size: 0.75rem; letter-spacing: 0.5px; }
  .btn-block { padding: 12px 18px; }
  .step-buttons .btn { padding: 9px 14px; font-size: 0.68rem; }
  .calendars-nav .btn { padding: 7px 12px; font-size: 0.65rem; }
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
