html, body {
  height: 100%;
  margin: 0;
}

.page-container {
  min-height: 100vh;              /* full viewport height */
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fafafa;
}

/* ================= HEADER – PREMIUM LOOK ================= */

.header {
  background: #BFC1C2;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;   /* or fixed */
  top: 0;
  z-index: 10000;

  /* subtle premium depth */
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

/* BRAND LOGO / NAME */
.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #8b1d3d; /* premium wine shade */
}

.logo span {
  font-weight: 500;
  color: #333;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

/* NAV ITEMS */
.nav-item {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.25s ease;
}

/* HOVER COLOR */
.nav-item:hover {
  color: #8b1d3d;
}

/* PREMIUM UNDERLINE ANIMATION */
.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #8b1d3d;
  transition: width 0.25s ease;
}

.nav-item:hover::after {
  width: 100%;
}

/* ACTIVE PAGE (OPTIONAL) */
.nav-item.active {
  color: #8b1d3d;
}

.nav-item.active::after {
  width: 100%;
}

/* ================= HERO ================= */
/* ================= HERO ================= */

.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 450px;
  overflow: hidden;
}

/* Slider */
.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease, transform 6s ease;
}

/* Active slide */
.hero-slide.active {
  opacity: 1;
  transform: scale(1.08); /* Ken Burns */
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 900px;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
  opacity: 0;
  animation: textReveal 1s ease forwards;
}

.hero-subtitle {
  font-size: 20px;
  opacity: 0;
  animation: textReveal 1s ease forwards;
  animation-delay: 0.2s;
}

/* CTA */
.hero-cta {
  margin-top: 30px;
  padding: 14px 36px;
  background: #c89b63;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: #b48852;
  transform: translateY(-2px);
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}

.hero-dot.active {
  background: #c89b63;
}

/* Animations */
@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
}

/* Text animation */
@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

.businesses-section {
  padding: 80px 60px;
  padding-bottom: 100px;
  background: #faf7f2;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #3a2a1a;
}

/* SECTION */
.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section h1,
.section h2 {
  color: #3a2a1a;
  margin-bottom: 20px;
}

.section p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* GRID (already used elsewhere) */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.brand-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card img {
  max-width: 120px;
  margin-bottom: 20px;
}

.brand-card h3 {
  margin-bottom: 10px;
  color: #5a3e2b;
}

.brand-card p {
  font-size: 14px;
  color: #666;
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* DROPDOWN */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  z-index: 10001;
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: #333;
}

.dropdown a:hover {
  background: #f2f2f2;
}

/* BRAND */
.brand-hero {
  padding: 50px;
  text-align: center;
  background: #efe3d3;
}

.brand-logo {
  max-width: 150px;
  margin-bottom: 20px;
}

/* LAYOUT */
.brand-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  padding: 40px;
}

/* FILTER SIDEBAR */
.sidebar {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.filter-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  cursor: pointer;
}

.filter-group input {
  margin-right: 8px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.product-card h3 {
  margin: 12px 0 6px;
}

.product-card .price {
  color: #5a3e2b;
  font-weight: 600;
}

/* PRODUCT PAGE */
.product-detail {
  align-items: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 20px 50px 50px;
}

.main-image {
  max-width: 400px;
  width: 100%;
}

.price {
  font-weight: bold;
  color: #5a3e2b;
}

/* ===== VISION & MISSION BLOCKS ===== */
.vm-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.vm-card {
  background: #fffaf3;
  border-left: 6px solid #b58a5a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.vm-card h2 {
  margin-bottom: 15px;
  color: #3a2a1a;
}

.vm-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* ===== SCROLL ANIMATION COLOR ACCENT ===== */
.fade-in {
  opacity: 1;
  background: #ffffff;
  border: 1px solid #eee;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    background-color 0.8s ease,
    border-color 0.8s ease,
    box-shadow 0.8s ease;
}

.fade-in.animate {
  background-color: #f8f3ee;
  border-color: #b58a5a;
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

/* ===== PRODUCT PAGE ENHANCEMENTS ===== */

/* Subtle page background */
.product-page {
  background: linear-gradient(#fafafa, #f3f3f3);
}

/* Image styling */
.main-image {
  max-width: 420px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid #eee;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  background: white;
  padding: 8px;
}

/* Card look for product info */
.card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Title */
.product-info h1 {
  margin-top: 0;
  font-size: 32px;
  letter-spacing: 0.5px;
}

/* Price */
.price {
  font-size: 24px;
  margin: 12px 0 18px;
}

/* Weight selector */
.product-info label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.product-info select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}

/* Description */
.product-info p {
  line-height: 1.6;
  color: #444;
}

.about-page {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-title {
  text-align: center;
  margin-bottom: 40px;
  color: #5a3e2b;
}

.about-profile {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 50px;
  text-align: center;
}

.about-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.about-card {
  background: #fffaf2;
  border-left: 6px solid #c9a26a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.about-card h2 {
  margin-bottom: 15px;
  color: #5a3e2b;
}

/* ===== IMAGE GALLERY ===== */
.image-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-zoom-container {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #e6e1da;
}

.image-zoom-container img {
  transition: transform 0.4s ease;
}

.image-zoom-container:hover img {
  transform: scale(1.2);
}

.thumbnails {
  display: flex;
  gap: 10px;
}

.thumbnail {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #ddd;
}

.thumbnail:hover {
  border-color: #c9a24d;
}

/* ===== BRAND STORY ===== */
.brand-story,
.trust-section {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.brand-story h3,
.trust-section h3 {
  margin-bottom: 10px;
}

.trust-section ul {
  list-style: none;
  padding: 0;
}

.trust-section li {
  margin-bottom: 8px;
  color: #444;
}

/* Base price note */
.per-kg-note {
  margin-top: 15px;
  font-size: 14px;
  color: #777;
}

/* PRICE BOX */
.price-box {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.new-price {
  font-size: 18px;
  font-weight: 700;
  color: #8b1d2c;
}

/* DISCOUNT BADGE */
.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d62828;
  color: #fff;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.discount-percent {
  font-size: 14px;
  color: #d62828;
  margin-left: 8px;
  font-weight: 600;
}

/* PRODUCT PAGE WHATSAPP BUTTON */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25d366;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Circular icon */
.whatsapp-btn .wa-icon {
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* SVG size FIX (important) */
.whatsapp-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Text alignment */
.whatsapp-btn .wa-text {
  white-space: nowrap;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

/* Icon micro-animation */
.whatsapp-btn:hover .wa-icon {
  transform: scale(1.08);
  transition: transform 0.25s ease;
}

.img-magnifier-lens {
  pointer-events: none;   /* 🔥 THIS LINE FIXES IT */
}

/* ===============================
   CONTACT PAGE (DESKTOP + MOBILE)
   =============================== */

.contact-page {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

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

.contact-card {
  background: #fff7eb;
  padding: 26px 26px 26px 22px;
  border-radius: 16px;
  border-left: 5px solid #c89b63;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}

.contact-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  color: #4a2e14;
}

.contact-card p,
.contact-card a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  line-height: 1.6;
}

/* Address card needs more height naturally */
.contact-address {
  grid-column: span 3;
}

/* MAP */
.map-wrapper {
  margin-top: 50px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

/* ===============================
   MOBILE FIX (THIS WAS MISSING)
   =============================== */

@media (max-width: 768px) {

  .contact-page {
    padding: 40px 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-card {
    padding: 18px 18px 18px 16px;
    border-left-width: 4px;
  }

  .contact-address {
    grid-column: span 1;
  }

  .contact-card h3 {
    font-size: 18px;
  }

  .contact-card p,
  .contact-card a {
    font-size: 15px;
  }

  .map-wrapper iframe {
    height: 260px;
  }
}

/* ================= FOOTER ================= */

.footer {
  width: 100%;
  background: #5a3e2b; /* rich premium brown */
  color: #fff;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}

.footer-inner {
  max-width: 1200px;        /* content width */
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

/* ---------- MOBILE HEADER ---------- */
@media (max-width: 768px) {
  .header {
    padding: 14px 20px;
  }

  .logo {
    font-size: 20px;
  }

  .nav {
    gap: 18px;
  }

  .nav-item {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .brand-layout {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .sidebar {
    order: 2;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }

  .main-image {
    max-width: 100%;
    margin: 0 auto;
  }

  .product-info h1 {
    font-size: 22px;
  }

  .price {
    font-size: 20px;
  }

  .whatsapp-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-page {
    margin: 30px auto;
  }

  .about-profile {
    font-size: 16px;
  }

  .about-blocks {
    grid-template-columns: 1fr;
  }
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.6);
}

footer {
  margin-top: auto;
}
