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

:root {
  --deep-green: #1F3D2B;
  --light-green: #2E5E3F;
  --cream: #F5F0E6;
  --gold: #C9A84C;
  --dark: #1A1A1A;
  --white: #FFFFFF;
  --gray-100: #F8F7F4;
  --gray-200: #E8E4DC;
  --gray-300: #D4CFC4;
  --gray-500: #8A8478;
  --gray-700: #5A5650;
  --red: #C0392B;
  --star: #F5A623;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: 'Inter', sans-serif; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 20px; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(135deg, var(--deep-green), var(--light-green));
  color: var(--cream);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.announcement-bar span { color: var(--gold); font-weight: 700; }

/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 20px;
}
.navbar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-green);
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--deep-green), var(--light-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-self: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
}
.nav-links a:hover { color: var(--deep-green); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}
.nav-btn {
  background: none;
  font-size: 1.2rem;
  color: var(--dark);
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.nav-btn:hover { background: var(--gray-100); }
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--red);
  color: white;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3325 0%, #2E5E3F 40%, #3a7a52 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1556228578-0d85b1a4d571?w=1600&q=80') center/cover;
  opacity: 0.15;
  mix-blend-mode: overlay;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(201,168,76,0.1) 0%, transparent 50%),
                     radial-gradient(circle at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%);
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-content { color: var(--cream); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.7;
}
.hero-features {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  opacity: 0.9;
}
.hero-feature .check {
  width: 20px;
  height: 20px;
  background: rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(201,168,76,0.4); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  width: 420px;
  height: 420px;
}
.hero-img-main {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(201,168,76,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-float {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  animation: floatUp 3s ease-in-out infinite;
}
.hero-float:nth-child(2) { top: 10%; right: -30px; animation-delay: 0.5s; }
.hero-float:nth-child(3) { bottom: 15%; left: -30px; animation-delay: 1s; }
.hero-float .num { font-weight: 700; color: var(--deep-green); font-size: 1.1rem; }
.hero-float .label { font-size: 0.7rem; color: var(--gray-500); }

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== SECTION COMMON ===== */
.section { padding: 80px 0; }
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-title {
  font-size: 2.4rem;
  color: var(--deep-green);
  margin-bottom: 12px;
}
.section-desc {
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  group: true;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,61,43,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.category-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.category-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}
.category-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}
.category-card:hover .category-arrow { background: var(--gold); color: var(--dark); }

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-lab {
  background: rgba(31,61,43,0.9);
  color: var(--cream);
}
.badge-sale {
  background: var(--red);
  color: white;
}
.product-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-300);
  box-shadow: var(--shadow-sm);
}
.product-wishlist:hover,
.product-wishlist.active { color: var(--red); }
.product-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-info { padding: 20px; }
.product-category { color: var(--gold); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 6px; }
.product-title { font-size: 1.25rem; color: var(--deep-green); margin-bottom: 8px; }
.product-desc { color: var(--gray-500); font-size: 0.82rem; margin-bottom: 14px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1.2rem; font-weight: 700; color: var(--deep-green); }
.product-original { font-size: 0.8rem; color: var(--gray-300); text-decoration: line-through; margin-left: 5px; }
.product-rating { font-size: 0.75rem; color: var(--gray-500); }
.product-rating .stars { color: var(--star); letter-spacing: 1px; }
.product-btn {
  width: 100%;
  margin-top: 16px;
  padding: 11px 20px;
  background: var(--deep-green);
  color: var(--cream);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}
.product-btn:hover { background: var(--light-green); }

/* ===== TRUST ===== */
.trust-section { background: var(--gray-100); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.trust-item { text-align: center; padding: 24px; }
.trust-icon { font-size: 2rem; margin-bottom: 12px; }
.trust-item h4 { color: var(--deep-green); font-size: 1.1rem; margin-bottom: 6px; }
.trust-item p { color: var(--gray-500); font-size: 0.8rem; }

/* ===== PROMO ===== */
.promo-banner {
  margin: 0 20px;
  min-height: 300px;
  border-radius: var(--radius-xl);
  padding: 50px;
  background: linear-gradient(135deg, rgba(31,61,43,0.96), rgba(46,94,63,0.93)),
              url('https://images.unsplash.com/photo-1615485290382-441e4d049cb5?w=1200&q=80') center/cover;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.promo-content { color: var(--cream); max-width: 600px; }
.promo-content h2 { font-size: 2.2rem; margin-bottom: 12px; }
.promo-content p { opacity: 0.85; margin-bottom: 20px; }
.promo-code { display: inline-flex; gap: 8px; align-items: center; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.35); padding: 10px 16px; border-radius: 50px; font-size: 0.85rem; }
.promo-code span { color: var(--gold); font-weight: 700; }

/* ===== BUNDLES ===== */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.bundle-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.bundle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bundle-imgs { display: grid; grid-template-columns: 1fr 1fr; }
.bundle-imgs img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.bundle-info { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.bundle-info h3 { color: var(--deep-green); font-size: 1.4rem; margin-bottom: 8px; }
.bundle-info p { color: var(--gray-500); font-size: 0.85rem; margin-bottom: 16px; }
.bundle-price { display: flex; align-items: center; gap: 8px; }
.bundle-price .current { font-size: 1.3rem; font-weight: 700; color: var(--deep-green); }
.bundle-price .original { color: var(--gray-300); text-decoration: line-through; font-size: 0.85rem; }
.bundle-price .save { color: var(--red); font-size: 0.75rem; font-weight: 600; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--gray-100); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card > p { color: var(--gray-700); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--deep-green); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; }
.testimonial-author h4 { color: var(--deep-green); font-size: 0.9rem; margin-bottom: 2px; }
.testimonial-author span { color: var(--gray-500); font-size: 0.7rem; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 22px; }
.blog-tag { color: var(--gold); font-size: 0.7rem; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; margin-bottom: 8px; }
.blog-body h3 { color: var(--deep-green); font-size: 1.1rem; margin-bottom: 8px; }
.blog-body p { color: var(--gray-500); font-size: 0.78rem; margin-bottom: 14px; }
.read-more { color: var(--deep-green); font-size: 0.78rem; font-weight: 600; }

/* ===== CUSTOMERS BANNER ===== */
.customers-banner {
  text-align: center;
  padding: 40px;
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  margin: 0 20px;
}
.customers-banner h3 { font-size: 1.5rem; color: var(--deep-green); margin-bottom: 8px; }
.customers-banner p { color: var(--gray-500); font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--deep-green);
  color: var(--cream);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { color: var(--cream); margin-bottom: 14px; }
.footer-brand p { color: rgba(245,240,230,0.65); font-size: 0.8rem; max-width: 320px; }
.footer h4 { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(245,240,230,0.7); font-size: 0.8rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: rgba(245,240,230,0.7); font-size: 0.8rem; margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(245,240,230,0.15); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; color: rgba(245,240,230,0.5); font-size: 0.72rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero h1 { font-size: 2.8rem; }
  .hero-visual { margin-top: 10px; }
  .categories-grid, .products-grid, .testimonials-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .bundles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .navbar .container { grid-template-columns: 1fr auto; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--gray-200);
    padding: 18px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
  .nav-links a:last-child { border-bottom: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; }
  .hero .container { padding-top: 60px; padding-bottom: 60px; }
  .hero h1 { font-size: 2.25rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-img-wrap { width: 300px; height: 300px; }
  .hero-float:nth-child(2) { right: -10px; }
  .hero-float:nth-child(3) { left: -10px; }
  .categories-grid, .products-grid, .testimonials-grid, .blog-grid, .trust-grid { grid-template-columns: 1fr; }
  .bundle-card { grid-template-columns: 1fr; }
  .bundle-imgs img { min-height: 160px; }
  .promo-banner { padding: 32px 24px; margin: 0 12px; }
  .promo-content h2 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== MOBILE NAV ANIMATION ===== */
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== EMPTY CART ===== */
.empty-cart {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}
.empty-cart h2 { margin-bottom: 12px; color: var(--deep-green); }
.empty-cart p { color: var(--gray-500); margin-bottom: 24px; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }
