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

:root {
  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #B5952F;
  --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #B5952F 100%);
  --white: #FFFFFF;
  --black: #0A0A0A;
  --gray: #333;
  --gray-light: #777;
  --beige: #F9F8F6; /* subtly marble-like beige */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--beige);
  color: var(--gray);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"); /* Faint marble/noise texture */
}

h1, h2, h3, h4, h5, h6, .serif {
  font-family: var(--font-serif);
  color: var(--black);
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Helpers */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}

/* Reusable Components */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background-color: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

/* Spacing */
.py-5 { padding-top: 5rem; padding-bottom: 5rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Navigation */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-container img {
  height: 60px; /* Adjust based on logo proportions */
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--black);
  position: relative;
}

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

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/hero-bg.png') center/cover;
}

.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  color: var(--gold-light);
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #eee;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  border-color: rgba(212, 175, 55, 0.4);
}

.product-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-fire {
  background: #ff4757;
  color: white;
}

.badge-limited {
  background: var(--black);
  color: var(--gold);
}

.product-img-wrapper {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.product-img-wrapper img {
  max-height: 100%;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-price {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.product-price del {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-left: 8px;
  font-weight: 400;
}

/* Trust Section */
.trust-section {
  background-color: var(--white);
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.trust-item h4 {
  font-size: 1.1rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Brand Logos */
.brand-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.brand-logos img {
  height: 160px;
  transition: var(--transition);
}

.brand-logos img:hover {
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.4));
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  position: relative;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.05);
}

.testimonial-card::before {
  content: '""';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(212,175,55,0.1);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.stars {
  color: var(--gold);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  color: var(--gold-light);
}

/* Footer */
footer {
  background: var(--black);
  color: var(--white);
  border-top: 2px solid var(--gold);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.footer-logo img {
  height: 80px;
  filter: brightness(0) invert(1);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--gold);
  font-size: 1.2rem;
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--black);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  z-index: 1000;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Animations Trigger Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Product Page Specific */
.product-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.product-gallery {
  background: var(--white);
  border-radius: 8px;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(212,175,55,0.1);
}

.product-gallery img {
  max-height: 500px;
}

.product-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-details .badge {
  align-self: flex-start;
  margin-bottom: 1rem;
}

.product-details h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.product-details .price-block {
  font-size: 2rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-details .price-block del {
  color: var(--gray-light);
  font-size: 1.25rem;
  font-weight: 400;
}

.description-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.features-list li i {
  color: var(--gold);
}

.action-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.action-buttons .btn {
  flex: 1;
  text-align: center;
}

.urgency-badge {
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
  padding: 10px 15px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

/* About Us Specific */
.about-hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1615529182904-14819c35db37?q=80&w=2000&auto=format&fit=crop') center/cover;
  color: var(--white);
}

.about-hero h1 {
  color: var(--gold-light);
  font-size: 3.5rem;
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
}

.content-block p {
  margin-bottom: 1.5rem;
}

.mission-box {
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--gold);
  margin-top: 3rem;
  position: relative;
}

.mission-box i {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--beige);
  padding: 0 15px;
  color: var(--gold);
  font-size: 2rem;
}

/* --- E-Commerce Additions --- */
/* Navbar Cart Icon */
.cart-icon-wrapper {
  position: relative;
  font-size: 1.25rem;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
}

.cart-icon-wrapper i {
  color: var(--gold-dark);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--black);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
}

/* Cart Drawer */
.cart-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.cart-overlay.show { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 400px; max-width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  transition: right 0.4s ease;
  display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--beige);
}

.close-cart { font-size: 1.5rem; cursor: pointer; color: var(--gray); }

.cart-items { flex-grow: 1; overflow-y: auto; padding: 1.5rem; }

.cart-item {
  display: flex; gap: 1rem; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid #eee;
}
.cart-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 4px; border: 1px solid rgba(212,175,55,0.2); }
.cart-item-details { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
.cart-item-title { font-weight: 600; font-size: 1rem; font-family: var(--font-serif); color: var(--black); }
.cart-item-price { color: var(--gold-dark); font-weight: 600; font-size: 0.95rem; margin: 4px 0; }
.item-remove { color: #ff4757; font-size: 0.8rem; cursor: pointer; text-decoration: underline; font-weight: 500; }

.cart-footer { padding: 1.5rem; border-top: 1px solid rgba(212,175,55,0.2); background: var(--white); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.3rem; font-weight: 600; margin-bottom: 1.5rem; color: var(--black); font-family: var(--font-serif); }

/* Checkout Page Specifics */
.checkout-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.checkout-form { background: var(--white); padding: 2.5rem; border-radius: 8px; border: 1px solid rgba(212,175,55,0.1); box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.checkout-form h2 { margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; color: var(--black); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--font-sans); transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(212,175,55,0.1); }

.order-summary-box { background: var(--beige); padding: 2.5rem; border-radius: 8px; border: 1px solid rgba(212,175,55,0.2); height: fit-content; }
.order-summary-box h3 { margin-bottom: 1.5rem; }
.summary-item { display: flex; justify-content: space-between; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.summary-total { display: flex; justify-content: space-between; font-size: 1.3rem; font-weight: 700; margin: 1.5rem 0; color: var(--black); }
.payment-method { background: var(--white); padding: 15px; border: 1px solid var(--gold); border-radius: 4px; display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; font-weight: 500; }

/* Responsive Design */
@media (max-width: 900px) {
  .product-page-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 73px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .nav-links.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .action-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
}
