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

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --gold-dark: #8b6914;
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: rgba(20, 20, 20, 0.8);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
  --border: rgba(201, 169, 110, 0.2);
  --glass: rgba(255, 255, 255, 0.03);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.lang-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.lang-btn svg {
  width: 16px;
  height: 16px;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.lang-option:hover {
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold);
}

.lang-option.active {
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.lang-option .flag {
  font-size: 1.2rem;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 169, 110, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(201, 169, 110, 0.1);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  width: 20px;
  height: 30px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollDown 2s infinite;
}

/* ── FEATURES ── */
.features {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Lifestyle Section */
.lifestyle-section {
  padding: 80px 5%;
  background: var(--bg-dark);
  text-align: center;
}

.lifestyle-section h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.lifestyle-section .section-subtitle {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 48px;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.lifestyle-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s ease, border-color 0.4s ease;
  background: #000;
}

.lifestyle-item img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}

.lifestyle-item:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.lifestyle-item:hover img {
  transform: scale(1.05);
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.03);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── PRODUCTS ── */
.products {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 30px 80px rgba(201, 169, 110, 0.1);
}

.product-card.featured {
  border-color: var(--gold);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  overflow: hidden;
  position: relative;
  background-color: #000;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-info {
  padding: 32px;
}

.product-info h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.product-info .volume {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.product-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  padding: 6px 12px;
  border-radius: 8px;
}

.product-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.product-cta:hover {
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
  transform: translateY(-1px);
}

/* ── ABOUT ── */
.about {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 24px;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.about-content h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 24px;
}

.about-content h2 .gold {
  color: var(--gold);
}

.about-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat {
  text-align: center;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--glass);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── DELIVERY ── */
.delivery {
  padding: 80px 24px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.05), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.delivery-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.delivery-container h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.delivery-container > p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
}

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

.delivery-item {
  padding: 32px 20px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}

.delivery-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.delivery-item .icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.delivery-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.delivery-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── FOOTER ── */
.footer {
  padding: 80px 24px 32px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .logo img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand .logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a,
.footer-col ul li span {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ── WHATSAPP FLOATING ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  animation: pulse-wp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollDown {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(8px); }
}

@keyframes pulse-wp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .features-grid, .products-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .delivery-features { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 998;
  }
  .nav-links.active a { font-size: 1.2rem; }
  .mobile-toggle { display: block; z-index: 999; }
  .features-grid, .products-grid, .delivery-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .about-image img { height: 300px; }
}

/* Product Image Slider */
.product-image.slider {
  position: relative;
  overflow: hidden;
}
.product-image .slides {
  display: flex;
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: 100%;
}
.product-image .slides img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  flex-shrink: 0;
  border-bottom: 1px solid var(--gold-dark);
  border-radius: 20px 20px 0 0;
}
.product-image.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 1rem;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.product-image.slider button:hover {
  background: var(--gold);
}
.product-image.slider .prev {
  left: 10px;
}
.product-image.slider .next {
  right: 10px;
}

/* ── SUBPAGE CORE LAYOUTS ── */
.subpage-hero {
  padding: 180px 24px 80px;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, var(--bg-primary) 100%), url('images/hero_banner.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  z-index: 0;
}
.subpage-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.subpage-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 16px;
  color: var(--text-primary);
}

/* ── INTERACTIVE ORDER CALCULATOR (products.html) ── */
.calculator-container {
  max-width: 700px;
  margin: 80px auto;
  padding: 48px;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.calc-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-field label {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.calc-field select,
.calc-field input {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
}
.calc-field select:focus,
.calc-field input:focus {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  outline: none;
  box-shadow: 0 0 15px rgba(201, 169, 110, 0.15);
}
.calc-field select option {
  background: #111;
  color: #fff;
}
.calc-summary {
  grid-column: span 2;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-total {
  display: flex;
  flex-direction: column;
}
.calc-total span:first-child {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.calc-total #calcTotalText {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
}
#calcOrderBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.2);
}
#calcOrderBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(201, 169, 110, 0.4);
}

/* Safety Instructions Panel */
.safety-section {
  max-width: 1000px;
  margin: 60px auto 100px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.02), rgba(201, 169, 110, 0.02));
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 20px;
}
.safety-section h3 {
  color: var(--gold-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.safety-section p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── FAQ ACCORDION (contact.html) ── */
.faq-container {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 24px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-align: left;
  transition: color 0.3s;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.4s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  padding: 0 0 24px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── CONTACT FORM ── */
.contact-grid-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}
.info-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-4px);
}
.info-icon {
  font-size: 2rem;
  color: var(--gold);
}
.info-details h4 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.info-details p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.contact-form-panel {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
}
.contact-form-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 32px;
  color: var(--gold-light);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.form-input-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-input-field label {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.form-input-field input,
.form-input-field textarea {
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
}
.form-input-field input:focus,
.form-input-field textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  outline: none;
  box-shadow: 0 0 15px rgba(201, 169, 110, 0.15);
}
.btn-submit {
  margin-top: 12px;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-submit:hover {
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
  transform: translateY(-1px);
}

/* Success Modal Overlay */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.success-overlay.visible {
  opacity: 1;
  visibility: visible;
}
.success-card {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid var(--border);
  padding: 48px;
  border-radius: 28px;
  max-width: 480px;
  text-align: center;
  box-shadow: var(--shadow);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.success-overlay.visible .success-card {
  transform: scale(1);
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 24px;
}
.success-card h4 {
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.success-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.success-card .close-btn {
  padding: 12px 30px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.success-card .close-btn:hover {
  background: var(--gold-light);
}

/* ── SUBPAGE RESPONSIVENESS ── */
@media (max-width: 768px) {
  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .calculator-container {
    padding: 30px 20px;
    margin: 40px auto;
  }
  .calc-summary {
    grid-column: span 1;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  .calc-summary a {
    width: 100%;
  }
  .contact-grid-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-panel {
    padding: 30px 20px;
  }
}

/* ── SLIDE-OUT SHOPPING CART DRAWER ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10004;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(25px);
  z-index: 10005;
  border-left: 1px solid var(--border);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

[dir="rtl"] .cart-drawer {
  right: auto;
  left: -420px;
  border-left: none;
  border-right: 1px solid var(--border);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.8);
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  right: 0;
}

[dir="rtl"] .cart-drawer.active {
  left: 0;
  right: auto;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.4rem;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
}

.cart-close {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.cart-close:hover {
  transform: rotate(90deg);
  color: #fff;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-empty-message {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cart-empty-icon {
  font-size: 3rem;
  color: var(--border);
  animation: float 3s ease-in-out infinite;
}

.cart-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  animation: fadeInUp 0.4s ease both;
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.cart-item-meta {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 2px;
}

.cart-item-flavor {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 8px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 4px 8px;
  border-radius: 8px;
}

.cart-item-qty button {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.cart-item-qty button:hover {
  color: #fff;
}

.cart-item-qty span {
  font-size: 0.9rem;
  color: #fff;
  min-width: 20px;
  text-align: center;
}

.cart-item-price {
  font-weight: 600;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ff4d4d;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.cart-item-remove:hover {
  transform: scale(1.2);
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  background: rgba(15, 15, 15, 0.98);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-subtotal span:first-child {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-subtotal span:last-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}

.cart-checkout-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.2);
  transition: all 0.3s;
}

.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(201, 169, 110, 0.4);
}

/* ── FLOATING CART TRIGGER BUTTON ── */
.cart-float {
  position: fixed;
  bottom: 110px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[dir="rtl"] .cart-float {
  right: auto;
  left: 30px;
}

.cart-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.5);
}

.cart-float svg {
  width: 26px;
  height: 26px;
  fill: #000;
}

.cart-float-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff4d4d;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0a0a0a;
  animation: popBadge 0.3s ease;
}

/* ── NAVBAR CART TRIGGER ── */
.nav-cart-trigger {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
}

.nav-cart-trigger:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.nav-cart-trigger svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.nav-cart-badge {
  background: #ff4d4d;
  color: #fff;
  border-radius: 50px;
  padding: 1px 6px;
  font-size: 0.65rem;
  font-weight: bold;
}

/* ── PRODUCT FLAVOR SELECTOR ── */
.flavor-selector {
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.flavor-selector label {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.flavor-selector select {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #fff;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}

.flavor-selector select:focus {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  outline: none;
}

.flavor-selector select option {
  background: #111;
  color: #fff;
}

/* ── TOASTER NOTIFICATION ── */
.toast-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gold);
  border-left: 5px solid var(--gold);
  color: #fff;
  padding: 16px 28px;
  border-radius: 10px;
  z-index: 10010;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  transform: translateX(130%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 12px;
}

[dir="rtl"] .toast-notification {
  right: auto;
  left: 24px;
  border-left: 1px solid var(--gold);
  border-right: 5px solid var(--gold);
  transform: translateX(-130%);
}

.toast-notification.active {
  transform: translateX(0);
}

.toast-icon {
  font-size: 1.2rem;
  color: var(--gold);
}

/* ── MARKETING SLOGAN BANNER ── */
.slogan-banner {
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.04), rgba(15, 15, 15, 0.8), rgba(201, 169, 110, 0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  margin: 60px auto 20px;
  max-width: 1200px;
  border-radius: 16px;
  box-shadow: inset 0 0 30px rgba(201, 169, 110, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.slogan-banner span.icon {
  font-size: 1.5rem;
  color: var(--gold);
  animation: float 2.5s ease-in-out infinite;
}

.slogan-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--gold-light);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin: 0;
}

/* ── PURITY SPECIFICATIONS DISPLAY BLOCK ── */
.purity-info-card {
  background: rgba(201, 169, 110, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0 0 0;
  position: relative;
  overflow: hidden;
  text-align: left;
  transition: all 0.3s;
}

.purity-info-card:hover {
  background: rgba(201, 169, 110, 0.04);
  border-color: rgba(201, 169, 110, 0.4);
}

.purity-info-card h5 {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.purity-info-card p {
  color: var(--text-secondary) !important;
  font-size: 0.85rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* ── ADDITIONAL ANIMATIONS ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes popBadge {
  0% { transform: scale(0); }
  80% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@media (max-width: 576px) {
  .cart-drawer {
    width: 100%;
  }
  .slogan-text {
    font-size: 1.15rem;
  }
}


