:root {
  --bg-beige: #F9F6F1;
  --white: #FFFFFF;
  --gold-metallic: #C6A66D; 
  --gold-light: #F2EADA; 
  --brown-text: #4A3728; 
  --brown-muted: #7E6B5A; 
  --border: #E8DFD0;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background: var(--bg-beige); 
  color: var(--brown-text);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden; 
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  position: fixed; top: 0; width: 100%; padding: 20px 50px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000; background: rgba(249, 246, 241, 0.95);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.nav-left, .nav-right { flex: 1; }
.nav-right { display: flex; justify-content: flex-end; }
.nav-center { display: flex; gap: 30px; justify-content: center; }

.logo {
  font-family: 'Playfair Display', serif; font-size: 26px;
  font-weight: 400; letter-spacing: 2px; color: var(--brown-text); text-decoration: none;
}
.nav-icon {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--brown-text);
  text-decoration: none; display: flex; align-items: center; gap: 8px; transition: 0.3s;
}
.nav-icon:hover { color: var(--gold-metallic); }

/* BUTOANE */
.btn-minimal {
  border: 1px solid var(--gold-metallic); padding: 10px 24px; border-radius: 50px;
  color: var(--gold-metallic); font-size: 11px; letter-spacing: 2px;
  font-weight: 600; background: transparent; cursor: pointer; transition: 0.3s;
  text-decoration: none; display: inline-block;
}
.btn-minimal:hover { background: var(--gold-metallic); color: var(--white); }

.btn-solid-gold {
  display: inline-block; background: var(--gold-metallic); color: var(--white);
  padding: 16px 30px; border: none; text-decoration: none; font-size: 11px;
  letter-spacing: 3px; font-weight: 600; cursor: pointer; text-align: center; transition: 0.3s;
}
.btn-solid-gold:hover { background: var(--brown-text); }
.w-100 { width: 100%; }

/* HERO SECTION */
.hero {
  height: 90vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 20px;
}
.hero-title {
  font-family: "Playfair Display", serif; 
  font-size: clamp(45px, 8vw, 90px); 
  line-height: 1.1; color: var(--brown-text);
  font-style: italic; font-weight: 300; 
}
.hero-subtitle {
  margin-top: 5px; font-family: 'Playfair Display', serif;
  letter-spacing: 0.2em; text-transform: uppercase; 
  color: var(--gold-metallic); font-size: clamp(18px, 3vw, 24px); 
  font-weight: 400; margin-bottom: 40px;
}
.hero-btn { border-radius: 50px; }

/* MENIU SERVICII */
.services-menu { padding: 80px 20px 150px; max-width: 900px; margin: 0 auto; }
.menu-header { text-align: center; margin-bottom: 80px; }
.eyebrow {
  display: block; font-size: 11px; letter-spacing: 4px; 
  text-transform: uppercase; color: var(--brown-muted); 
  margin-bottom: 15px; font-weight: 600;
}
.section-title {
  font-family: "Playfair Display", serif; font-size: clamp(32px, 5vw, 46px);
  color: var(--brown-text); font-weight: 300; font-style: italic;
}

/* STRUCTURĂ SUBCATEGORII */
.menu-list { display: flex; flex-direction: column; gap: 60px; }
.service-block { border-bottom: 1px solid var(--border); padding-bottom: 50px; }
.service-header { margin-bottom: 30px; }
.service-header h3 {
  font-family: 'Montserrat', sans-serif; font-size: 22px; 
  font-weight: 500; letter-spacing: 2px; color: var(--brown-text); text-transform: uppercase;
}
.service-header p { font-size: 13px; color: var(--brown-muted); margin-top: 8px; line-height: 1.5; }

.variants-container { display: flex; flex-direction: column; gap: 15px; }
.variant-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white); padding: 15px 25px; border: 1px solid var(--border); border-radius: 8px;
}
.variant-info { display: flex; flex-direction: column; gap: 5px; }
.variant-info span:first-child { font-weight: 500; font-size: 14px; color: var(--brown-text); }
.variant-price { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold-metallic); font-size: 16px; font-weight: 600; }

.variant-actions { display: flex; align-items: center; gap: 15px; }
.qty-selector { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.qty-btn {
  background: transparent; border: none; width: 30px; height: 30px;
  font-size: 16px; color: var(--brown-text); cursor: pointer; transition: 0.3s;
}
.qty-btn:hover { background: var(--gold-light); }
.qty-selector span { width: 30px; text-align: center; font-size: 13px; font-weight: 600; }
.btn-add {
  background: transparent; border: 1px solid var(--brown-text); color: var(--brown-text);
  padding: 8px 15px; font-size: 10px; letter-spacing: 1px; font-weight: 600; cursor: pointer; transition: 0.3s; border-radius: 4px;
}
.btn-add:hover { background: var(--brown-text); color: var(--white); }

/* --- SECTIUNEA GALERIE (Pentru demo.html) --- */
.gallery-section { padding: 60px 20px; border-bottom: 1px solid var(--border); }
.gallery-container { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 30px; }
.gallery-text h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-style: italic; color: var(--brown-text); margin-bottom: 10px; }
.gallery-text p { font-size: 14px; color: var(--brown-muted); line-height: 1.6; max-width: 600px; }

.slider-wrapper { position: relative; width: 100%; overflow: hidden; border-radius: 12px; aspect-ratio: 21/9; background: var(--gold-light); }
.slides-track { display: flex; height: 100%; transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.slide { min-width: 100%; height: 100%; }
.slide img { width: 100%; height: 100%; object-fit: cover; filter: sepia(20%) contrast(1.05); }

.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.7); backdrop-filter: blur(5px);
  border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  color: var(--brown-text); font-size: 18px; transition: 0.3s;
}
.slider-btn:hover { background: var(--white); color: var(--gold-metallic); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

/* PANOU LATERAL (CART) */
.cart-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(74, 55, 40, 0.4); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: 0.4s ease; z-index: 1001;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-panel {
  position: fixed; top: 0; right: -450px; width: 100%; max-width: 400px; height: 100vh;
  background: var(--bg-beige); z-index: 1002; display: flex; flex-direction: column;
  transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); box-shadow: -10px 0 30px rgba(0,0,0,0.05);
}
.cart-panel.active { right: 0; }
.cart-header { padding: 30px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-style: italic; font-weight: 400; }
.close-cart { background: transparent; border: none; font-size: 20px; cursor: pointer; color: var(--brown-muted); }
.cart-body { padding: 30px; flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 20px; }
.empty-cart-msg { font-size: 13px; color: var(--brown-muted); text-align: center; margin-top: 50px; }

.cart-item { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 15px; border-bottom: 1px dotted var(--border); }
.cart-item-info h4 { font-size: 13px; margin-bottom: 5px; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.cart-item-info p { font-size: 11px; color: var(--brown-muted); }
.cart-item-price { font-family: 'Playfair Display', serif; font-size: 15px; font-style: italic; color: var(--gold-metallic); font-weight: 600; text-align: right;}
.remove-item { background: transparent; border: none; color: #d9534f; font-size: 9px; text-transform: uppercase; cursor: pointer; margin-top: 5px; letter-spacing: 1px; }

.cart-footer { padding: 30px; border-top: 1px solid var(--border); background: var(--white); }
.cart-total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 600; margin-bottom: 25px; color: var(--brown-text); }
.cart-total span:last-child { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold-metallic); font-size: 22px; }

/* ANIMATII SCROLL */
.scroll-appear { opacity:0; transform:translateY(30px); transition: 0.8s ease; }
.scroll-appear.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar { flex-direction: column; gap: 15px; padding: 15px; }
  .nav-center { order: 3; width: 100%; justify-content: space-between; }
  .nav-right { position: absolute; right: 20px; top: 20px; }
  .variant-row { flex-direction: column; align-items: flex-start; gap: 15px; }
  .variant-actions { width: 100%; justify-content: space-between; }
  .slider-wrapper { aspect-ratio: 4/3; }
}