:root {
  --gold:      #c9a96e;
  --gold-dark: #8b6914;
  --gold-light:#f0d9a8;
  --cream:     #fdf6ec;
  --cream2:    #f5ebe0;
  --dark:      #1a1209;
  --dark2:     #2d2108;
  --text:      #3d2f10;
  --text-light:#7a6040;
  --white:     #ffffff;
  --success:   #4caf50;
  --shadow:    0 8px 40px rgba(139,105,20,0.15);
  --shadow-sm: 0 2px 12px rgba(139,105,20,0.10);
  --radius:    16px;
  --radius-sm: 8px;
  --transition:0.3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
h1,h2,h3 { font-family: 'Playfair Display', serif; color: var(--dark); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.55);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.section-header p { color: var(--text-light); max-width: 560px; margin: 0 auto; }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(26,18,9,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.flame-icon { font-size: 1.5rem; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold-light);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 400;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.cart-btn {
  background: var(--gold);
  border: none;
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  flex-shrink: 0;
}
.cart-btn:hover { background: var(--gold-light); }
.cart-count {
  background: var(--dark);
  color: var(--gold-light);
  border-radius: 50%;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}

.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 60% 50%, #3d2108 0%, #1a1209 50%, #0d0804 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  20%  { opacity: 0.7; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh) scale(0); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.hero-subtitle {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
}
.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: absolute;
  right: 8%;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  z-index: 1;
}
.candle-showcase { display: flex; align-items: flex-end; gap: 24px; }
.candle { display: flex; flex-direction: column; align-items: center; }
.candle-body {
  border-radius: 8px 8px 4px 4px;
  position: relative;
}
.c1 .candle-body { width: 60px; height: 220px; background: linear-gradient(180deg, #e8d5b7 0%, #c9a96e 40%, #8b6914 100%); }
.c2 .candle-body { width: 80px; height: 300px; background: linear-gradient(180deg, #f5f0e8 0%, #e8d5b7 40%, #c9a96e 100%); }
.c3 .candle-body { width: 55px; height: 180px; background: linear-gradient(180deg, #d4a8a8 0%, #a87070 40%, #6b3030 100%); }
.flame {
  width: 20px; height: 32px;
  background: radial-gradient(ellipse at 50% 100%, #ff9800, #ff5722, transparent);
  border-radius: 50% 50% 30% 30%;
  position: relative;
  animation: flicker 1.5s ease-in-out infinite alternate;
  margin-bottom: -2px;
}
.flame-inner {
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 16px;
  background: radial-gradient(ellipse at 50% 100%, #fff176, #ff9800, transparent);
  border-radius: 50% 50% 30% 30%;
  animation: flicker 1s ease-in-out infinite alternate-reverse;
}
@keyframes flicker {
  0%   { transform: scaleX(1) rotate(-1deg); }
  50%  { transform: scaleX(0.9) rotate(2deg); }
  100% { transform: scaleX(1.05) rotate(-2deg); }
}

.scroll-down {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 10;
}
.scroll-down span {
  display: block;
  width: 24px; height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1.05rem; }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.badge {
  background: var(--cream2);
  border: 1px solid var(--gold-light);
  color: var(--text);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: linear-gradient(135deg, var(--cream2), var(--cream));
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.stat-card:hover { transform: translateY(-4px); }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: var(--text-light); font-size: 0.9rem; }

.features {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark2), var(--dark));
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.2);
  transition: var(--transition);
}
.feature-item:hover {
  background: rgba(201,169,110,0.08);
  border-color: rgba(201,169,110,0.5);
  transform: translateY(-4px);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-item h3 { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 10px; }
.feature-item p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.catalog {
  padding: 100px 0;
  background: var(--cream);
}
.catalog-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--gold-light);
  background: transparent;
  color: var(--text-light);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201,169,110,0.35);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-card.hidden { display: none; }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
  letter-spacing: 0.5px;
}
.product-badge.nuevo  { background: linear-gradient(135deg,#66bb6a,#2e7d32); }
.product-badge.oferta { background: linear-gradient(135deg,#ef5350,#b71c1c); }
.product-badge.pack   { background: linear-gradient(135deg,#ab47bc,#6a1b9a); }
.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img-photo {
  background: var(--cream2);
}
.product-img-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-photo img {
  transform: scale(1.07);
}
.product-candle {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-flame {
  width: 14px; height: 22px;
  background: radial-gradient(ellipse at 50% 100%, #ff9800, #ff5722, transparent);
  border-radius: 50% 50% 30% 30%;
  animation: flicker 1.5s ease-in-out infinite alternate;
  margin-bottom: -1px;
}
.p-body {
  width: 50px; height: 120px;
  border-radius: 6px 6px 3px 3px;
}
.pack-img { flex-direction: column; gap: 8px; }
.pack-candles { display: flex; gap: 10px; align-items: flex-end; }
.p-body.mini { width: 30px; height: 80px; border-radius: 4px 4px 2px 2px; }
.pack-flame-group { font-size: 1.8rem; }
.product-info { padding: 20px 22px 22px; }
.product-category {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.product-info h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--dark); }
.product-info p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 12px; line-height: 1.5; }
.product-size { font-size: 0.82rem; color: var(--text-light); }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  gap: 12px;
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.price-old {
  font-size: 0.9rem;
  color: #aaa;
  text-decoration: line-through;
  display: block;
}
.add-cart {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.add-cart:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(201,169,110,0.4);
}
.add-cart.added {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark), #2d1b00);
}
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-tag { background: rgba(201,169,110,0.2); color: var(--gold-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,169,110,0.4);
  transform: translateY(-4px);
}
.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card > p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer strong { display: block; color: var(--white); font-size: 0.95rem; }
.reviewer span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

.order-section {
  padding: 100px 0;
  background: var(--white);
}
.order-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}
.info-card {
  background: var(--cream2);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.info-card h3 { font-size: 1.1rem; margin-bottom: 16px; color: var(--dark); }
.payment-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg,rgba(201,169,110,0.12),rgba(201,169,110,0.06));
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.payment-icon { font-size: 2rem; flex-shrink: 0; }
.payment-method strong { display: block; color: var(--dark); margin-bottom: 6px; }
.payment-method p { color: var(--text-light); font-size: 0.9rem; }
.delivery-info { list-style: none; }
.delivery-info li {
  padding: 8px 0;
  color: var(--text-light);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.delivery-info li:last-child { border-bottom: none; }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg,#25d366,#128c7e);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 12px;
  transition: var(--transition);
}
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

.order-form-wrapper {
  background: var(--cream2);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--gold-light);
}
.order-form h3 { font-size: 1.4rem; margin-bottom: 28px; color: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; color: var(--text); font-size: 0.9rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-group textarea { resize: vertical; }
.form-cart-summary {
  background: var(--white);
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
}
.form-cart-summary h4 { font-size: 1rem; margin-bottom: 12px; color: var(--dark); }
.empty-cart-msg { color: var(--text-light); font-size: 0.9rem; font-style: italic; }
.form-cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  font-size: 0.9rem;
}
.form-cart-item:last-child { border-bottom: none; }
.form-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  margin-top: 8px;
  border-top: 2px solid var(--gold-light);
  font-size: 1rem;
}
.form-cart-total strong { color: var(--gold-dark); font-size: 1.2rem; }
.payment-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: linear-gradient(135deg,rgba(201,169,110,0.12),rgba(201,169,110,0.06));
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
}
.payment-notice span { font-size: 1.4rem; flex-shrink: 0; }
.payment-notice p { color: var(--text); font-size: 0.9rem; }

.contact {
  padding: 100px 0;
  background: var(--cream);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem,3vw,2.4rem); margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.c-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--dark); margin-bottom: 2px; }
.contact-item span { color: var(--text-light); font-size: 0.9rem; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  background: var(--white);
  border: 2px solid var(--gold-light);
  color: var(--text);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gold-light);
}
.contact-form h3 { font-size: 1.4rem; margin-bottom: 28px; }

.footer { background: var(--dark); padding: 60px 0 30px; }
.footer-top {
  text-align: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  margin-bottom: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand span:last-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
}
.footer-top > p { color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.footer-badges span {
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.25);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
}
.footer-bottom {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  line-height: 2;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed;
  top: 0; right: -420px;
  width: 420px; height: 100vh;
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 2px solid var(--cream2);
}
.cart-header h3 { font-size: 1.3rem; }
.cart-close {
  background: none; border: none;
  font-size: 1.3rem; cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cart-close:hover { background: var(--cream2); color: var(--dark); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 28px; }
.empty-cart { text-align: center; color: var(--text-light); padding: 40px 0; font-size: 0.95rem; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream2);
}
.cart-item-name { flex: 1; font-weight: 700; font-size: 0.95rem; }
.cart-item-price { color: var(--gold-dark); font-family: 'Playfair Display', serif; font-weight: 700; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 28px; height: 28px;
  border: 2px solid var(--gold-light);
  background: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: var(--text);
  font-weight: 700;
}
.qty-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.cart-footer {
  padding: 24px 28px;
  border-top: 2px solid var(--cream2);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cart-total strong { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold-dark); }
.cart-payment-note { color: var(--text-light); font-size: 0.85rem; margin-bottom: 16px; }

.img-zoom-hint {
  position: absolute;
  inset: 0;
  background: rgba(26,18,9,0.45);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.product-img-photo:hover .img-zoom-hint { opacity: 1; }
.product-img-photo { cursor: pointer; }
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-box {
  position: relative;
  max-width: 860px;
  width: 100%;
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  border: 1px solid rgba(201,169,110,0.25);
}
.lightbox-overlay.open .lightbox-box { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  background: rgba(26,18,9,0.8);
  border: 2px solid rgba(201,169,110,0.4);
  color: var(--white);
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.lightbox-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg);
}
.lightbox-img-wrap {
  width: 100%;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0804;
}
.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}
.lightbox-caption {
  padding: 16px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold-light);
  text-align: center;
  border-top: 1px solid rgba(201,169,110,0.15);
  background: var(--dark);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  border: 2px solid var(--gold-light);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-icon { font-size: 3.5rem; margin-bottom: 16px; }
.modal h2 { margin-bottom: 16px; }
.modal p { color: var(--text-light); margin-bottom: 12px; }
.modal .btn { margin-top: 20px; }

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .hero-visual { display: none; }
  .order-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(26,18,9,0.98); padding: 24px; gap: 20px; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .hero-btns { flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .cart-sidebar { width: 100%; right: -100%; }
  .order-form-wrapper { padding: 24px; }
  .contact-form-wrapper { padding: 28px; }
}
@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .catalog-filters { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.85rem; }
}