@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 {
  /* Luxury Palette */
  --deep-maroon: #7A1F35;
  --maroon-dark: #5c1527;
  --soft-gold: #D4AF37;
  --gold-light: #e6c86a;
  --warm-beige: #F7F2EC;
  --white: #FFFFFF;
  --charcoal: #2D2D2D;
  --grey-text: #666666;
  
  --border-subtle: rgba(122, 31, 53, 0.1);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Animations & Shadows */
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 10px 30px rgba(122, 31, 53, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--white);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
button { font-family: var(--font-body); cursor: pointer; border: none; }
img { max-width: 100%; display: block; }

/* 1. Announcement Bar */
.announcement-bar {
  background-color: var(--deep-maroon);
  color: var(--soft-gold);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.announcement-bar span { display: flex; align-items: center; gap: 8px; }

/* 2. Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep-maroon);
  letter-spacing: 2px;
}

.desktop-nav {
  display: flex;
  gap: 32px;
}
.desktop-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  color: var(--charcoal);
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--soft-gold);
  transition: var(--transition);
}
.desktop-nav a:hover::after { width: 100%; }
.desktop-nav a:hover { color: var(--deep-maroon); }

.header-icons { display: flex; gap: 24px; align-items: center; }
.header-icons button, .header-icons a {
  background: none;
  color: var(--charcoal);
  font-size: 1.2rem;
  transition: var(--transition);
}
.header-icons button:hover, .header-icons a:hover {
  color: var(--soft-gold);
  transform: translateY(-2px);
}

/* 3. Hero Section */
.hero {
  background-color: var(--warm-beige);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--deep-maroon);
  margin-bottom: 24px;
}
.hero-content p {
  font-size: 1.1rem;
  color: var(--grey-text);
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: var(--transition);
}
.btn-primary {
  background: var(--deep-maroon);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--maroon-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(122, 31, 53, 0.2);
}
.btn-secondary {
  background: transparent;
  color: var(--deep-maroon);
  border: 1px solid var(--deep-maroon);
}
.btn-secondary:hover {
  background: var(--deep-maroon);
  color: var(--white);
}

.hero-visual {
  position: relative;
  height: 500px;
}
.hero-visual .floating-img {
  position: absolute;
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  animation: float 6s ease-in-out infinite;
}
.hero-visual .img-1 { width: 300px; top: 10%; right: 10%; z-index: 2; }
.hero-visual .img-2 { width: 220px; bottom: 5%; left: 0; animation-delay: 1s; z-index: 3; }
.hero-visual .img-3 { width: 180px; top: 0; left: 10%; animation-delay: 2s; z-index: 1; }

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Section Globals */
.section-pad { padding: 80px clamp(20px, 5vw, 60px); }
.section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--deep-maroon);
  margin-bottom: 60px;
}

/* 4. Shop by Collection Grid */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.collection-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--warm-beige);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: var(--transition);
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.collection-card:hover img { transform: scale(1.08); }
.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(122,31,53,0.8) 0%, transparent 50%);
}
.collection-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  z-index: 2;
  color: var(--white);
  text-align: center;
}
.collection-content h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; margin-bottom: 8px;}
.collection-content span { font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; color: var(--soft-gold); opacity: 0; transform: translateY(10px); transition: var(--transition); }
.collection-card:hover .collection-content span { opacity: 1; transform: translateY(0); }

/* 5. Best Sellers */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.product-card {
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.product-img-wrap { position: relative; overflow: hidden; border-radius: 6px; margin-bottom: 20px; aspect-ratio: 1; background: var(--warm-beige); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.badge { position: absolute; top: 10px; left: 10px; background: var(--soft-gold); color: var(--white); padding: 4px 12px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; z-index: 2; }
.wishlist-btn { position: absolute; top: 10px; right: 10px; background: var(--white); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--charcoal); box-shadow: var(--shadow-soft); z-index: 2; }
.wishlist-btn:hover { color: var(--deep-maroon); }

.product-info h3 { font-family: var(--font-heading); font-size: 1.25rem; color: var(--charcoal); margin-bottom: 8px; font-weight: 600; }
.price { color: var(--deep-maroon); font-weight: 600; font-size: 1.1rem; display: flex; gap: 10px; align-items: center;}
.price del { color: var(--grey-text); font-size: 0.9rem; font-weight: 400; }

.add-cart-btn { width: 100%; margin-top: 20px; padding: 12px; background: transparent; border: 1px solid var(--charcoal); color: var(--charcoal); font-weight: 500; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem;}
.add-cart-btn:hover { background: var(--charcoal); color: var(--white); }

/* 6. Bulk Banner */
.bulk-banner {
  background: var(--deep-maroon);
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
  border-radius: 20px;
  margin: 0 clamp(20px, 5vw, 60px);
  box-shadow: var(--shadow-hover);
}
.bulk-banner h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; color: var(--soft-gold); }
.bulk-banner p { font-size: 1.1rem; margin-bottom: 40px; opacity: 0.9; }

/* 7. Instagram Section */
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.insta-item { aspect-ratio: 1; background: var(--warm-beige); border-radius: 12px; overflow: hidden; position: relative; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; }
.insta-item::after { content: '▶'; position: absolute; inset: 0; background: rgba(0,0,0,0.3); color: white; display: flex; align-items: center; justify-content: center; font-size: 2rem; opacity: 0; transition: var(--transition); }
.insta-item:hover::after { opacity: 1; }

/* 9. FAQ Section */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-subtle); padding: 24px 0; }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--deep-maroon); cursor: pointer; }
.faq-a { padding-top: 16px; color: var(--grey-text); display: none; }
.faq-item.active .faq-a { display: block; }

/* 10. Newsletter */
.newsletter { background: var(--warm-beige); text-align: center; }
.newsletter-form { max-width: 500px; margin: 30px auto 0; display: flex; gap: 10px; }
.newsletter-form input { flex: 1; padding: 16px; border: 1px solid var(--border-subtle); border-radius: 4px; font-size: 1rem; }
.newsletter-form input:focus { outline: none; border-color: var(--deep-maroon); }

/* 11. Footer */
.site-footer { background: var(--charcoal); color: var(--white); padding: 80px clamp(20px, 5vw, 60px) 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-col h3 { font-family: var(--font-heading); color: var(--soft-gold); font-size: 1.25rem; margin-bottom: 24px; }
.footer-col p { color: #aaa; margin-bottom: 24px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #aaa; }
.footer-links a:hover { color: var(--soft-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; color: #777; font-size: 0.9rem; }

/* Mobile Optimizations */
.mobile-nav-bottom { display: none; }
.fab-whatsapp { position: fixed; bottom: 30px; right: 30px; background: #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(37, 211, 102, 0.3); z-index: 100; transition: var(--transition); }
.fab-whatsapp:hover { transform: scale(1.1); }

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 40px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { display: none; }
  .desktop-nav { display: none; }
  .insta-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .bulk-banner { margin: 0 20px; padding: 40px 20px; }
  
  /* Sticky Bottom Nav */
  .mobile-nav-bottom {
    display: flex;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 12px 0;
    border-top: 1px solid var(--border-subtle);
    z-index: 99;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
  }
  .mobile-nav-item { display: flex; flex-direction: column; align-items: center; color: var(--grey-text); font-size: 0.75rem; gap: 4px; }
  .mobile-nav-item i { font-size: 1.25rem; }
  .mobile-nav-item.active { color: var(--deep-maroon); }
  
  body { padding-bottom: 70px; } /* Space for bottom nav */
  .fab-whatsapp { bottom: 90px; }
}
