/* ═══════════════════════════════════════════════════════════════
   BOMBOANA - STYLESHEET PRINCIPAL
   Confiserie Artizanală
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   VARIABILE CSS
───────────────────────────────────────────────────────────── */
:root {
  --cream: #faf6ef;
  --cream-light: #fffcf7;
  --cream-warm: #f5ede0;
  --gold: #c9a45c;
  --gold-light: #e8d5a8;
  --gold-dark: #9a7b3d;
  --choco: #4a3728;
  --choco-dark: #2f231a;
  --choco-light: #6b5344;
  --text: #3d2f25;
  --muted: #8b7a6b;
  --white: #ffffff;
  --success: #4a7c59;
  --error: #a63d3d;
  --shadow-soft: 0 8px 40px rgba(74, 55, 40, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 164, 92, 0.25);
  --transition: 0.3s ease;
}

/* ─────────────────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ─────────────────────────────────────────────────────────────
   FRAME DECORATIV CU FILIGRAN
───────────────────────────────────────────────────────────── */
.page-frame {
  min-height: 100vh;
  position: relative;
  margin: 12px;
  background: var(--cream-light);
  border: 2px solid var(--gold);
  box-shadow: 
    inset 0 0 0 8px var(--cream-light),
    inset 0 0 0 10px rgba(201, 164, 92, 0.3),
    var(--shadow-soft);
}

/* Colțuri decorative filigran */
.corner-filigree {
  position: fixed;
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 1001;
  opacity: 0.6;
}

.corner-filigree::before,
.corner-filigree::after {
  content: "";
  position: absolute;
  border: 2px solid var(--gold);
}

.corner-filigree::before {
  width: 50px;
  height: 50px;
  border-radius: 0 50% 0 0;
  border-left: none;
  border-bottom: none;
}

.corner-filigree::after {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  top: 15px;
  left: 15px;
}

.corner-tl { top: 20px; left: 20px; }
.corner-tr { top: 20px; right: 20px; transform: scaleX(-1); }
.corner-bl { bottom: 20px; left: 20px; transform: scaleY(-1); }
.corner-br { bottom: 20px; right: 20px; transform: scale(-1); }

/* Linie decorativă orizontală */
.divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--gold-light) 20%, 
    var(--gold) 50%, 
    var(--gold-light) 80%, 
    transparent 100%
  );
  position: relative;
  margin: 40px 0;
}

.divider-line::before {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--cream-light);
  padding: 0 15px;
  color: var(--gold);
  font-size: 12px;
}

/* ─────────────────────────────────────────────────────────────
   TOP RIBBON
───────────────────────────────────────────────────────────── */
.top-ribbon {
  background: linear-gradient(135deg, var(--choco-dark) 0%, var(--choco) 100%);
  color: var(--gold-light);
  text-align: center;
  padding: 12px 20px;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.top-ribbon span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ─────────────────────────────────────────────────────────────
   HEADER
───────────────────────────────────────────────────────────── */
header {
  background: var(--cream-light);
  border-bottom: 1px solid var(--gold-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--choco-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  text-decoration: none;
}

.logo::after {
  content: "confiserie artizanală";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.4rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: var(--choco-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.cart-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--gold);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--choco);
  letter-spacing: 0.05em;
}

.cart-indicator:hover {
  background: var(--gold);
  color: var(--white);
}

.cart-count {
  background: var(--gold);
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.cart-indicator:hover .cart-count {
  background: var(--choco);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--choco);
}

/* ─────────────────────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────────────────────── */
.hero {
  padding: 80px 40px 100px;
  text-align: center;
  position: relative;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(232, 213, 168, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(201, 164, 92, 0.15) 0%, transparent 50%),
    var(--cream-light);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, var(--gold-light) 1px, transparent 1px),
    radial-gradient(circle at 90% 80%, var(--gold-light) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-pretitle {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.hero-pretitle::before,
.hero-pretitle::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--choco-dark);
  line-height: 1.15;
  margin-bottom: 25px;
}

.hero h1 span {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
  font-size: 0.7em;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--choco-light);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badge {
  background: var(--white);
  border: 1px solid var(--gold);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--choco);
  letter-spacing: 0.08em;
  box-shadow: 0 2px 10px rgba(201, 164, 92, 0.15);
  transition: all var(--transition);
}

.hero-badge:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 16px 40px;
  border: none;
  border-radius: 40px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 164, 92, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--choco);
  padding: 14px 30px;
  border: 1px solid var(--gold-light);
  border-radius: 40px;
  font-family: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  margin-left: 15px;
  transition: all var(--transition);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 164, 92, 0.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--choco);
  color: var(--gold-light);
  padding: 14px 30px;
  border: none;
  border-radius: 40px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* ─────────────────────────────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-pretitle {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--choco-dark);
  margin-bottom: 15px;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────
   PRODUCTS
───────────────────────────────────────────────────────────── */
.products-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  border: 1px solid rgba(201, 164, 92, 0.15);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.3s; }
.product-card:nth-child(5) { animation-delay: 0.4s; }
.product-card:nth-child(6) { animation-delay: 0.5s; }

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  border-radius: 0 0 3px 3px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(74, 55, 40, 0.15);
}

.product-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--gold-light) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.product-icon {
  font-size: 4rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-icon-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.product-category {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--choco-dark);
  margin-bottom: 12px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 15px;
  border-top: 1px solid var(--cream-warm);
  margin-bottom: 20px;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.product-price small {
  font-size: 0.5em;
  font-weight: 400;
  color: var(--muted);
}

.product-weight {
  font-size: 0.8rem;
  color: var(--muted);
}

.product-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--gold-light);
  border-radius: 25px;
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--choco);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: var(--cream-warm);
}

.qty-input {
  width: 45px;
  height: 36px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--choco);
}

.qty-input:focus {
  outline: none;
}

.btn-add-cart {
  flex: 1;
  background: var(--choco);
  color: var(--gold-light);
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-add-cart:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.btn-add-cart.added {
  background: var(--gold);
  color: var(--white);
}

/* ─────────────────────────────────────────────────────────────
   CART SIDEBAR
───────────────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(47, 35, 26, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: var(--cream-light);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--gold);
}

.cart-sidebar.active {
  transform: translateX(0);
}

.cart-header {
  padding: 25px 30px;
  border-bottom: 1px solid var(--gold-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--choco-dark);
}

.cart-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--choco);
  transition: all 0.2s ease;
}

.cart-close:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px;
}

.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-style: italic;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-warm);
}

.cart-item-image {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--gold-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.cart-item-icon-fallback {
  font-size: 1.8rem;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--choco-dark);
  margin-bottom: 5px;
}

.cart-item-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  background: var(--cream-warm);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--choco);
  transition: all 0.2s ease;
}

.cart-qty-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.cart-qty-value {
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.8rem;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cart-item-remove:hover {
  color: var(--error);
}

.cart-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-align: right;
}

.cart-footer {
  padding: 25px 30px;
  border-top: 2px solid var(--gold-light);
  background: var(--white);
}

.cart-summary {
  margin-bottom: 20px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.cart-summary-row.total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--choco-dark);
  padding-top: 15px;
  border-top: 1px solid var(--gold-light);
  margin-top: 15px;
}

.cart-summary-row.discount {
  color: #2e7d32;
  font-weight: 600;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  padding: 8px 12px;
  border-radius: 8px;
  margin: 10px 0;
}

.cart-summary-row.discount span:last-child {
  color: #1b5e20;
  font-weight: 700;
}

.cart-discount-progress {
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
  border: 1px dashed #ffc107;
  border-radius: 10px;
  padding: 12px 15px;
  margin-top: 15px;
  text-align: center;
  font-size: 0.85rem;
  color: #5d4037;
  animation: pulseGlow 2s ease-in-out infinite;
}

.cart-discount-progress strong {
  color: #e65100;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.3); }
  50% { box-shadow: 0 0 15px 3px rgba(255, 193, 7, 0.2); }
}

.order-discount {
  color: #2e7d32 !important;
  font-weight: 600;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  padding: 8px 12px !important;
  border-radius: 8px;
  margin: 5px 0;
}

.order-discount span:last-child {
  color: #1b5e20;
  font-weight: 700;
}

.payment-note {
  background: var(--cream-warm);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px dashed var(--gold-light);
}

.payment-note strong {
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.payment-note p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 5px;
}

.btn-checkout {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 30px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 164, 92, 0.4);
}

.btn-checkout:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ─────────────────────────────────────────────────────────────
   ORDER SECTION
───────────────────────────────────────────────────────────── */
.order-section {
  background: var(--white);
  padding: 80px 40px;
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}

.order-container {
  max-width: 700px;
  margin: 0 auto;
}

.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--choco);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-group label .required {
  color: var(--gold-dark);
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid var(--gold-light);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream-light);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.1);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.payment-method {
  background: var(--cream-warm);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid var(--gold-light);
}

.payment-method strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 8px;
}

.payment-method p {
  font-size: 0.9rem;
  color: var(--muted);
}

.gdpr-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gdpr-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.gdpr-check label {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--choco) 0%, var(--choco-dark) 100%);
  color: var(--gold-light);
  border: none;
  padding: 18px;
  border-radius: 30px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 10px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.order-cart-summary {
  background: var(--cream);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  border: 1px solid var(--gold-light);
}

.order-cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--choco-dark);
  margin-bottom: 15px;
}

.order-cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--gold-light);
  font-size: 0.9rem;
}

.order-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.order-item-img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.order-item-icon {
  font-size: 1.3rem;
}

.order-cart-item:last-child {
  border-bottom: none;
}

.order-cart-total {
  display: flex;
  justify-content: space-between;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid var(--gold);
}

.order-message {
  margin-top: 20px;
  padding: 20px 25px;
  border-radius: 12px;
  text-align: center;
  font-size: 0.95rem;
  display: none;
}

.order-message.success {
  background: #e8f5e9;
  color: var(--success);
  border: 1px solid #c8e6c9;
  display: block;
}

.order-message.error {
  background: #ffebee;
  color: var(--error);
  border: 1px solid #ffcdd2;
  display: block;
}

/* ─────────────────────────────────────────────────────────────
   CONTACT SECTION
───────────────────────────────────────────────────────────── */
.contact-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 164, 92, 0.15);
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(74, 55, 40, 0.12);
}

.contact-card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--choco-dark);
  margin-bottom: 10px;
}

.contact-card-text {
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-card-text a {
  color: var(--gold-dark);
  transition: color var(--transition);
}

.contact-card-text a:hover {
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
footer {
  background: linear-gradient(135deg, var(--choco-dark) 0%, var(--choco) 100%);
  color: var(--gold-light);
  padding: 50px 40px 30px;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.footer-tagline {
  font-style: italic;
  margin-bottom: 25px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.footer-links a {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-contact a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-copyright {
  font-size: 0.85rem;
  opacity: 0.7;
  padding-top: 25px;
  border-top: 1px solid rgba(201, 164, 92, 0.2);
}

/* ─────────────────────────────────────────────────────────────
   PAGE HEADER (pentru paginile interioare)
───────────────────────────────────────────────────────────── */
.page-header {
  padding: 60px 40px;
  text-align: center;
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(232, 213, 168, 0.2) 0%, transparent 70%),
    var(--cream-light);
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--choco-dark);
  margin-bottom: 15px;
}

.page-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
}

/* ─────────────────────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .page-frame {
    margin: 6px;
  }

  .header-main {
    padding: 20px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo {
    font-size: 2rem;
  }

  .hero {
    padding: 50px 20px 70px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-badges {
    gap: 10px;
  }

  .hero-badge {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .btn-ghost {
    margin-left: 0;
    margin-top: 15px;
  }

  .products-section {
    padding: 40px 20px 60px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .order-section {
    padding: 50px 20px;
  }

  .order-form {
    grid-template-columns: 1fr;
  }

  .cart-sidebar {
    width: 100%;
  }

  .corner-filigree {
    display: none;
  }

  .top-ribbon {
    gap: 15px;
    font-size: 0.75rem;
    padding: 10px 15px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 15px;
  }

  .page-header {
    padding: 40px 20px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .contact-section {
    padding: 50px 20px;
  }
}

@media (max-width: 480px) {
  .product-actions {
    flex-direction: column;
  }

  .qty-control {
    width: 100%;
    justify-content: center;
  }

  .btn-add-cart {
    width: 100%;
  }

  .cart-header {
    padding: 20px;
  }

  .cart-items {
    padding: 15px 20px;
  }

  .cart-footer {
    padding: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SECȚIUNEA COLECȚII
═══════════════════════════════════════════════════════════════ */

.collections-section {
  padding: 80px 50px;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.collection-card {
  background: var(--cream-soft);
  border: 2px solid var(--gold-light);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 30px 60px rgba(139, 109, 76, 0.15),
    0 0 0 4px var(--gold-light);
  border-color: var(--gold);
}

.collection-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-card:hover .collection-image img {
  transform: scale(1.08);
}

.collection-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(74, 55, 40, 0.4) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.collection-card:hover .collection-overlay {
  opacity: 1;
}

.collection-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(201, 164, 92, 0.4);
  z-index: 2;
}

.collection-content {
  padding: 30px;
}

.collection-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--choco-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.collection-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.4s ease;
}

.collection-card:hover .collection-title::after {
  width: 100%;
}

.collection-desc {
  font-size: 0.95rem;
  color: var(--choco-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.collection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.collection-tags span {
  background: rgba(201, 164, 92, 0.1);
  color: var(--gold-dark);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(201, 164, 92, 0.2);
  transition: all 0.3s ease;
}

.collection-card:hover .collection-tags span {
  background: rgba(201, 164, 92, 0.2);
  border-color: var(--gold-light);
}

/* Responsive Colecții */
@media (max-width: 900px) {
  .collections-section {
    padding: 60px 30px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .collection-image {
    height: 250px;
  }
}

@media (max-width: 500px) {
  .collections-section {
    padding: 50px 20px;
  }

  .collection-image {
    height: 200px;
  }

  .collection-content {
    padding: 25px 20px;
  }

  .collection-title {
    font-size: 1.5rem;
  }

  .collection-tags {
    gap: 8px;
  }

  .collection-tags span {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}