/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* UPDATED: Added scroll padding for fixed navbar */
html {
  scroll-padding-top: 120px; /* Adjust this value to match your navbar height */
}

body {
  background-color: #F9EBEB;
  font-family: 'Inter', sans-serif;
  color: #5B1A1A;
  overflow-x: hidden;
  margin-top: 80px; /* This should match your navbar height */
}

@media (max-width: 768px) {
  body {
    margin-top: 70px;
  }
}

@media (max-width: 480px) {
  body {
    margin-top: 60px;
  }
}

/* Navbar */
.navbar {
  background: linear-gradient(to right, #852F2F 15%, #9E5555 50%, #852F2F 85%);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  padding: 10px 0;
}

.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  font-size: 18px;
  transition: 0.3s;
}

/* This style handles the hover and active (from JS scrollspy) */
.navbar .nav-link:hover,
.navbar .nav-link.active {
  text-decoration: underline;
  text-underline-offset: 6px;
  color: #fff;
}

/* Hero Section */
.hero {
  background: url('../gallery/info_page_main_cow_1.jpg') no-repeat center center/cover;
  min-height: calc(100vh - 80px); /* Subtract navbar height */
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0; /* Remove negative margin */
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 800px;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #FFD6D6;
  display: block;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  background-color: #852F2F;
  color: white;
  font-weight: 500;
  padding: 12px 35px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.hero-btn:hover {
  background-color: #6d2424;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 70px);
  }
  
  body {
    margin-top: 70px;
  }
  
  .hero-content {
    padding: 15px;
  }
  
  .hero-btn {
    padding: 10px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: calc(100vh - 60px);
  }
  
  body {
    margin-top: 60px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 0.95rem;
    padding: 0 15px;
  }
  
  .hero-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* Extra small devices (phones less than 420px) */
@media (max-width: 420px) {
  .hero {
    min-height: calc(100vh - 60px);
  }
  
  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .hero-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

/* Very small devices (phones less than 320px) */
@media (max-width: 320px) {
  .hero h1 {
    font-size: 1.4rem;
  }
  
  .hero p {
    font-size: 0.8rem;
  }
  
  .hero-btn {
    padding: 7px 15px;
    font-size: 0.8rem;
  }
}

/* About Us Section */
.about-section {
  background-color: #fff;
  border-radius: 20px;
  margin: 50px auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 90%;
}

.about-section h2 {
  font-family: 'Cinzel', serif;
  color: #852F2F;
  font-weight: 700;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5B1A1A;
}
  
/* Our Team Section */
/* .team-container {
   Grid layout handled by Bootstrap row and cols 
} */

.team-card {
  background-color: #FDFBF4;
  border: 1px solid #D4AF37; /* gold accent */
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.card-img-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #852F2F;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 20px;
}

.overlay .bio {
  color: white;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.4;
}

.team-card:hover .overlay {
  opacity: 1;
}

.team-card:hover .card-img-top {
  opacity: 0;
}

.team-card.show-bio .overlay {
  opacity: 1;
}

.team-card.show-bio .card-img-top {
  opacity: 0;
}

.card-title {
  font-family: 'Cinzel', serif;
  color: #852F2F;
  font-weight: 600;
  font-size: 1.2rem;
}

.card-text {
  color: #5B1A1A;
  font-weight: 500;
  font-size: 0.9rem;
}

.linkedin-link {
  color: #0077B5;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.linkedin-link:hover {
  color: #005582;
}

@media (max-width: 480px) {
  .card-img-container {
    height: 200px;
  }

  .overlay .bio {
    font-size: 0.6rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 0.85rem;
  }
}


/* ------------------------------ */
/* Improved Alignment for GauLok  */
/* ------------------------------ */

#gaulok {
  background-color: #F9EBEB;
  padding-top: 50px;
  padding-bottom: 20px;
  margin-bottom: 0;
}

.gaulok-title {
  font-family: 'Cinzel', serif;
  color: #852F2F;
  font-weight: 700;
  font-size: 2.8rem;
}

.gaulok-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #5B1A1A;
}

/* GauLok Stay Section */
.gaulokstay-section {
  background-color: #fff;
  border-radius: 20px;
  margin: 20px auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 90%;
  color: #5B1A1A;
  padding: 40px 20px;
}

.gaulokstay-section h2 {
  font-family: 'Cinzel', serif;
  color: #852F2F;
  font-weight: 700;
  font-size: 2.2rem;
}

.gaulokstay-section h3 {
  font-family: 'Cinzel', serif;
  color: #852F2F;
  font-weight: 600;
  font-size: 1.5rem;
}

.price {
  color: #5B1A1A;
  font-weight: 700;
  font-size: 1.2rem;
}

.cottage-img {
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.cottage-img:hover {
  transform: scale(1.03);
}

.contact-btn {
  background-color: #852F2F;
  border: none;
  color: white;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 10px;
  transition: 0.3s;
}

.contact-btn:hover {
  background-color: #6d2424;
}

/* ------------------------------ */
/* Responsive Design for Mobile   */
/* ------------------------------ */
@media (max-width: 480px) {
  .gaulok-title {
    font-size: 1.5rem!important;
    margin-bottom: 1.5rem;
  }

  .gaulok-intro {
    width: 90%;
    margin: 0 auto;
  }

  .gaulokstay-section {
    margin: 30px auto;
    padding: 30px 20px;
  }

  .gaulokstay-section h2 {
    font-size: 1.8rem;
  }

  .price {
    text-align: right;
    display: block;
    width: 100%;
    margin-top: 5px;
  }

  .contact-btn {
    margin: 20px auto 0;
    display: block;
  }

  .cottage-img {
    width: 100%;
    max-width: 380px;
  }
}

/* --------------------------------- */
/* NEW: Gau Anubhav Slider Section */
/* --------------------------------- */

/* ================================
   ✅ Gau Anubhav Title Section
   ================================ */
#gauabh {
  background-color: #F9EBEB;
  padding-top: 50px;
  padding-bottom: 20px;
}

/* Gau Anubhav Card Section */
.gauanubhav-section {
  background-color: #fff;
  border-radius: 20px;
  max-width: 90%;
  margin: 0 auto 60px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 50px 20px;
}

.py-5 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

/* ================================
   ✅ Marquee Animation Section
   ================================ */
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 1rem; /* Reduced gap for tighter fit */
  will-change: transform;
 /* animation: scroll-left 10s linear infinite;*/
}

/* Marquee Animation Keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================================
   ✅ Gau Anubhav Card Styling
   ================================ */
.gauanubhav-card {
  background-color: #F9EBEB;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-width: 250px;   /* Reduced from 300px → fits more cards */
  max-width: 250px;
  flex-shrink: 0;
  flex: 0 0 300px;
}

.gauanubhav-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.gauanubhav-card img {
  width: 100%;
  height: 160px; /* Adjusted smaller image for compact view */
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}

/* Card Body Content */
.gauanubhav-card .card-body {
  padding: 15px;
  flex-grow: 1;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Card Title */
.gauanubhav-card h3 {
  color: #852F2F;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Card Description */
.gauanubhav-card p {
  font-size: 0.95rem;
  color: #5B1A1A;
  line-height: 1.4;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

/* ================================
   ✅ Responsive Design
   ================================ */
@media (max-width: 480px) {
  .gauanubhav-card {
    min-width: 180px;  /* Smaller cards for mobile */
    max-width: 180px;
  }

  .gauanubhav-card img {
    height: 120px;
  }

  .gauanubhav-card h3 {
    font-size: 1rem;
  }

  .gauanubhav-card p {
    font-size: 0.9rem;
  }
}

/* ===================== UPDATED PRODUCTS SECTION ===================== */

.products-section {
  background-color: #F9EBEB;
  padding: 60px 0;
  text-align: center;
  
}

/* Search Left - Wishlist Right */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90%;
  margin: 0 auto 40px auto;
  gap: 15px;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 300px;
}

.search-bar {
  width: 100%;
  border-radius: 25px;
  padding: 10px 20px;
  padding-right: 40px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: 0.3s;
}

.search-bar:focus {
  outline: none;
  border-color: #852F2F;
  box-shadow: 0 0 8px rgba(133, 47, 47, 0.2);
}

.search-cancel-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: #852F2F;
  font-size: 1.2rem;
  padding: 5px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-cancel-btn:hover {
  color: #6d2424;
  transform: scale(1.1);
}

.wishlist-icon {
  position: relative;
  background-color: #852F2F;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wishlist-icon:hover {
  background-color: #6d2424;
}

.filter-icon {
  position: relative;
  background-color: #852F2F;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  display: none; /* Hidden by default, shown on mobile */
}

.filter-icon:hover {
  background-color: #6d2424;
}

.dropdown-menu {
  background-color: #fff;
  border: 1px solid #852F2F;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dropdown-item {
  color: #5B1A1A;
  padding: 10px 20px;
  transition: 0.3s;
}

.dropdown-item:hover {
  background-color: #F9EBEB;
  color: #852F2F;
}

.wishlist-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #dc3545;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  line-height: 1.5;
}


/* 🔴 UPDATED: Main Product Container */
.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center cards horizontally */
  align-items: center;
  gap: 0px;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 90%;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
  /* Conflicting styles removed. 
    The 'row' class in index.html now controls the layout.
  */
  /*
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  
}
  */

/* Product Card */
.product-card {
  background-color: #F9EBEB;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; 
  width: 100%;

}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.product-details {
  padding: 15px 0 0 0;
  color: #5B1A1A;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #852F2F;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.product-name:hover {
  white-space: normal;
  overflow: visible;
}

.wishlist-btn, .buy-btn {
    background-color: #852F2F;
    border: none;
    color: white;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s;
    width: 100%;
}
.mt-3 {
    margin-top: 1rem !important;
}

/* Product View More Button */
#productViewMoreBtn {
  background-color: #852F2F;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}


#productViewMoreBtn:hover {
  background-color: #6d2424;
  transform: translateY(-2px);
}

/* About View More Button */
#showTeamBtn {
  background-color: #852F2F;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: block;
  margin: 0 auto;
}

#showTeamBtn:hover {
  background-color: #6d2424;
  transform: translateY(-2px);
}

/* About View Less Button */
#hideTeamBtn {
  background-color: #852F2F;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#hideTeamBtn:hover {
  background-color: #6d2424;
  transform: translateY(-2px);
}

/* Our Team Section */
.team-card {
  background-color: #F9EBEB;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.team-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 3px solid #852F2F;
  display: block;
  margin: 0 auto;
}

.team-desc {
  font-size: 0.9rem;
  color: #5B1A1A;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .team-card {
    padding: 15px;
  }

  .team-img {
    width: 100px;
    height: 100px;
  }

  .team-desc {
    font-size: 0.85rem;
  }
}

/* Wishlist Panel */
#wishlistPanel {
  position: fixed;
  top: 100px;
  right: -400px;
  width: 350px;
  height: calc(100vh - 100px);
  background-color: #fff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  transition: right 0.4s ease;
  z-index: 9999;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#wishlistPanel.active {
  right: 0;
}

.wishlist-header {
  border-bottom: 2px solid #F9EBEB;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.close-btn {
  background-color: #852F2F;
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 8px 15px;
  transition: 0.3s ease;
}

.close-btn:hover {
  background-color: #6d2424;
}

/* Wishlist Item */
#wishlistItems {
  flex-grow: 1;
  overflow-y: auto;
  list-style: none;
  padding: 0;
}

#wishlistItems li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F9EBEB;
  border-radius: 10px;
  padding: 10px 15px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#wishlistItems img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.delete-btn {
  background: none;
  border: none;
  color: #dc3545;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.delete-btn:hover {
  transform: scale(1.2);
}

/* ===============================
   � MOBILE VIEW (2 PRODUCTS PER ROW)
   =============================== */

/* CATEGORY PILLS */
.category-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.category-btn {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #d9bebe;
  background: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  color: #5B1A1A;
  transition: 0.2s;
}

.category-btn.active,
.category-btn:hover {
  background-color: #852F2F;
  color: #fff;
}

/* VIEW MORE LINK */
.view-more {
  display: block;
  font-size: 0.75rem;
  color: #852F2F;
  cursor: pointer;
  margin-top: 6px;
  text-decoration: underline;
}

/* PRODUCT QTY */
.qty {
  font-size: 0.8rem;
  color: #7a4a4a;
}
/* =================== QUANTITY SELECTOR STYLING =================== */
.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 0;
  font-size: 0.9rem!important;
}

.qty-label {
  font-size: 0.9rem;
  color: #5B1A1A;
  font-weight: 600;
  margin: 0;
}

.qty-dropdown {
  padding: 6px 12px;
  border: 1px solid #d9bebe;
  border-radius: 6px;
  background-color: #fff;
  color: #5B1A1A;
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qty-dropdown:hover {
  border-color: #852F2F;
  box-shadow: 0 2px 6px rgba(133, 47, 47, 0.1);
}

.qty-dropdown:focus {
  outline: none;
  border-color: #852F2F;
  box-shadow: 0 0 6px rgba(133, 47, 47, 0.2);
}

.qty-dropdown option {
  background-color: #fff;
  color: #5B1A1A;
}

/* =================== PRICE INFO STYLING =================== */
.price-info {
  font-size: 0.9rem!important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.unit-price {
  color: #852F2F;
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Hide category pills on mobile */
@media (max-width: 480px) {
  .category-pills {
    display: none;
  }
}

/* ===============================
   🖥️ TABLET VIEW (768px - 991px)
   =============================== */

@media(min-width: 768px){
.quantity-selector {
  font-size: 0.9rem!important;
}

.price-info {
    font-size: 0.9rem!important;
}
}

@media (min-width: 768px){
  .top-bar {
    max-width: 90%;
    margin: 0 auto 25px auto;
    gap: 10px;
  }

  .search-container {
    max-width: 280px;
  }

  .search-bar {
    font-size: 0.95rem;
    padding: 10px 18px;
    padding-right: 38px;
  }

  .products-container {
    padding: 30px;
    max-width: 92%;
  }

  .product-card {
    padding: 15px;
  }

  .quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 0;
  font-size: 0.9rem!important;
}

  .product-card img {
    height: 180px;
  }

  .product-name {
    font-size: 1rem;
  }

  .product-price {
    font-size: 0.95rem;
  }

  .wishlist-btn, .buy-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  #productViewMoreBtn {
    padding: 8px 24px;
    font-size: 0.95rem;
  }
}

/* ===============================
   📱 MOBILE VIEW (Below 768px)
   =============================== */
@media (max-width: 480px) {
  .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%;
    margin: 0 auto 20px auto;
    gap: 10px;
  }

  .search-container {
    flex: 1;
    max-width: 55%;
  }

  .filter-icon {
    display: flex;
    flex: 0 0 auto;
    padding: 8px 12px;
    font-size: 0.85rem;
    height: 36px;
    gap: 5px;
  }

  .search-bar {
    width: 100%;
    font-size: 0.6rem!important;
    padding: 5px 10px!important;
    height: 30px!important;
  }

  .search-cancel-btn {
    right: 10px;
    font-size: 1rem;
  }

  #wishlistToggle.wishlist-icon {
    flex: 0 0 auto;
    padding: 5px 10px;
    font-size: 0.5rem;
    height: 25px;
    gap: 5px;
  }

  .category-pills {
    display: none; /* Hidden on mobile, filter via dropdown */
  }

  /* Products container for mobile */
  .products-container {
    padding: 15px;
    max-width: 95%;
  }

  /* Product column sizing */
.products-container > .col-lg-3 {
  width: 50% !important;
  max-width: 50% !important;
  padding: 8px;
  box-sizing: border-box;
}


  /* Product card */
  .product-card {
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  }

  .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  }

  /* Product image */
  .product-card img {
    height: 130px;
    border-radius: 8px;
  }

  /* Product text */
  .product-name {
    font-size: 0.85rem;
    margin: 8px 0 5px 0;
  }

  .product-price {
    font-size: 0.8rem;
    font-weight: 600;
  }

  .qty {
    font-size: 0.75rem;
    margin: 4px 0;
  }

  /* Buttons */
  .wishlist-btn, .buy-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    margin-top: 6px !important;
    border-radius: 6px;
  }

  #productViewMoreBtn {
    padding: 6px 18px;
    font-size: 0.85rem;
    margin-top: 10px;
  }

  .wishlist-count {
    top: -3px;
    right: -3px;
    font-size: 7px;
  }

  .wishlist-icon, .filter-icon {
        font-size: 0.5rem!important;
        padding: 5px 10px!important;
        height: 25px!important;
    }
    
  /* Specific font sizes for 480px mobile view */
  .quantity-selector {
    font-size: 0.6rem!important;
    padding: 0px 11px;
  }
  
  .price-info {
    font-size: 0.6rem!important;
  }
}

@media (max-width: 320px){
    .quantity-selector {
    font-size: 0.5rem!important;
  }
}

/* =================== GAU DHAAN SECTION =================== */
#gauDhaan {
  background-color: #F9EBEB;
}

.gau-dhaan-title {
  font-family: 'Cinzel', serif;
  color: #852F2F;
  font-weight: 700;
  font-size: 2.8rem;
}

.gau-dhaan-wrapper {
  background: #fff;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Accordion styling */
.accordion-item {
  border: none;
  border-bottom: 1px solid #e7dede;
  border-radius: 0 !important;
  background: transparent;
}

.accordion-button {
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #5a2e2e;
  box-shadow: none !important;
  font-size: 1rem;
}

.accordion-button:not(.collapsed) {
  color: #712C2C;
  background-color: #f9f4f3;
}

.accordion-body {
  font-family: 'Poppins', sans-serif;
  color: #6b4b4b;
  font-size: 0.95rem;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

/* Responsive */
@media (max-width: 480px) {
  .gau-dhaan-title {
    font-size: 1.5rem!important;
  }

  .gau-dhaan-wrapper {
    padding: 20px;
  }
  .accordion-button {
    font-size: 0.7rem!important;
  }
  .accordion-body {
    font-size: 0.7rem!important;
  }
}

/* =================== CONTACT US SECTION =================== */
#contactUs {
  background-color: #F9EBEB;
}

.contact-title {
  font-family: 'Cinzel', serif;
  color: #852F2F;
  font-weight: 700;
  font-size: 2.8rem;
}

.contact-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
}

/* Form labels */
.contact-wrapper .form-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #4a2e2e;
}

/* Form fields */
.contact-wrapper .form-control {
  border-radius: 10px;
  border: 1px solid #d9bebe;
  padding: 10px 12px;
  background-color: #fff;
  box-shadow: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-wrapper .form-control:focus {
  border-color: #712C2C;
  box-shadow: 0 0 5px rgba(113, 44, 44, 0.2);
}

/* Submit Button */
.submit-btn {
  background-color: #712C2C;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 8px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #5a2323;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-widgeth: 480px) {
  .contact-wrapper {
    padding: 25px;
  }


  .form-label {
    font-size: 0.9rem;
  }
}

/* =================== FAQ SECTION =================== */
#faq {
  background-color: #F9EBEB;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Accordion buttons */
#faq .accordion-button {
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #4a2e2e;
  border-radius: 12px;
  box-shadow: none;
  transition: all 0.3s ease;
}

#faq .accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #712C2C;
  border-bottom: 1px solid #d9bebe;
}

#faq .accordion-body {
  background-color: #fff;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #4a2e2e;
  padding: 15px 20px;
}

/* Responsive */
@media (max-width: 480px) {
  .faq-container {
    padding: 20px;
  }

  #faq h2 {
    font-size: 1.5rem!important;
  }

  #faq .accordion-button {
    font-size: 0.7rem!important;
  }

  #faq .accordion-body {
    font-size: 0.7rem!important;
  }
}

/* Footer */
.footer {
  background-color: #852F2F;
  color: white;
  font-size: 0.95rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* Responsive */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .about-section p {
    width: 90% !important;
  }
}

/* =================== TOAST NOTIFICATION POPUP =================== */
.toast-notification {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #28a745; /* Green for success */
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  font-weight: 500;
  z-index: 10000;
  transition: opacity 0.3s ease, visibility 0.3s ease, bottom 0.3s ease;
}

.toast-notification.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

.toast-notification.error {
  background-color: #dc3545; /* Red for error */
}



@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem; /* smaller size for mobile */
    text-align: center;
  }

  .section-subtitle {
    font-size: 1rem;
    text-align: center;
  }
}

/*navbar mobile design */
@media (max-width: 480px) {
  .navbar {
    padding: 6px 0;
    border-radius: 0 0 18px 18px;
  }

  .navbar img {
    height: 4rem;
    width: 8rem;
  }

  .navbar-toggler {
    padding: 4px 8px;
  }

  .hero {
    height: 90vh;
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: var(--body);
    padding: 0 10px;
  }

  .hero-btn {
    padding: 5px 15px;
    font-size: 0.85rem;
  }

  .btn hero-btn mt-3{
    margin-top: 0.5rem !important;
    font-size: 0.9rem;
  }
}

/*about us mobile design */
@media (max-width: 480px) {
  .about-section h2 {
    font-size: 1.5rem;
  }

  #team-member-subtitle {
    font-size: 1rem;
    color: #5B1A1A;
  }

  .about-section p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .about-section py-5{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  #showTeamBtn,
  #hideTeamBtn {
    padding: 6px 18px;
    font-size: 0.85rem;
    margin-top: -0.9rem !important;
  }
}

/*gau anubhav mobile design */
@media (max-width: 480px) {
  .gaulok-title{
    font-size: 1.5rem;
  }
  .gaulok-intro mt-3 mx-auto w-75{
    font-size: 0.9rem;
  }

  .gaulokstay-section h2 {
    font-size: 1.5rem;
  }

  .gaulokstay-section h3{
    font-size: 1rem;
  }

   .gaulokstay-section h4{
    font-size: 0.7rem;
   }

   .gaulokstay-section p {
    font-size: 0.8rem;
  }

  .gaulokstay button{
    padding: 5px 10px;
  }

}

/*products mobile design */
@media (max-width: 480px) {
  .search-bar {
    font-size: var(--small);
    padding: 6px 12px;
  }

  .wishlist-icon,
  .filter-icon {
    font-size: var(--small);
    padding: 6px 10px;
    height: 32px;
  }

  .product-name {
    font-size: 0.8rem;
  }

  .qty-label {
    font-size: 0.75rem;
  }

  .qty-dropdown {
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  .wishlist-btn,
  .buy-btn {
    font-size: 0.6rem;
    padding: 5px 10px;
  }
}

/*gau dhan mobile design */
@media (max-width: 480px) {
  .gau-dhaan-title {
    font-size: var(--h2);
  }

  .accordion-button {
    font-size: var(--body);
  }

  .accordion-body {
    font-size: var(--small);
  }
}

/*contact us mobile design */
@media (max-width: 480px) {
  .contact-title {
    font-size: 1.5rem;
  }

  .contact-wrapper{
    font-size: 0.7rem!important;
  }
  .form-label {
    font-size: var(--small);
  }

  .form-control {
    font-size: 0.7rem!important;
  }

  .submit-btn {
    font-size: 0.8rem;
    padding: 7px 18px;
  }
}

/*faq mobile design */
@media (max-width: 480px) {
  #faq .accordion-button {
    font-size: 0.85rem;
  }

  #faq .accordion-body {
    font-size: 0.75rem;
  }
}

/*footer mobile design */
@media (max-width: 480px) {
  .footer {
    font-size: 0.7rem;
    padding: 10px 5px;
  }
}

/* =========================================== */
/* JioPhone2 Specific (240x320) */
/* =========================================== */
@media (max-width: 250px) {
  
  /* Hero Section adjustments */
  .hero {
    min-height: calc(100vh - 45px);
  }
  
  body {
    margin-top: 45px;
  }
  
  .hero-content {
    padding: 8px;
  }
  
  .hero h1 {
    font-size: 1.1rem;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  
  .hero h1 span {
    font-size: 1.1rem;
  }
  
  .hero p {
    font-size: 0.65rem;
    line-height: 1.3;
    margin-bottom: 12px;
    padding: 0 8px;
  }
  
  .hero-btn {
    padding: 5px 12px;
    font-size: 0.65rem;
  }
  
  /* Navbar adjustments */
  .navbar {
    padding: 3px 0;
    border-radius: 0 0 10px 10px;
  }
  
  .navbar .navbar-brand img {
    width: 70px;
    height: auto;
  }
  
  .navbar-toggler {
    padding: 2px 4px;
  }
  
  .navbar-toggler i {
    font-size: 1rem;
  }
  
  .navbar .nav-link {
    font-size: 0.7rem;
    padding: 5px;
  }
  
  /* About Section */
  .about-section {
    margin: 15px auto;
    padding: 15px 10px;
    border-radius: 15px;
  }
  
  .about-section h2 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .about-section p {
    font-size: 0.7rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  
  /* Team Section */
  .card-img-container {
    height: 120px;
  }
  
  .overlay .bio {
    font-size: 0.45rem;
    padding: 8px;
    line-height: 1.2;
  }
  
  .card-title {
    font-size: 0.8rem;
    padding: 10px 5px;
  }
  
  #team-member-subtitle {
    font-size: 0.8rem;
  }
  
  /* Products Section */
  .products-section {
    padding: 20px 0;
  }
  
  .products-container {
    padding: 8px;
    border-radius: 15px;
  }
  
  .product-card {
    padding: 6px;
    border-radius: 10px;
  }
  
  .product-card img {
    height: 80px;
  }
  
  .product-name {
    font-size: 0.65rem;
    margin: 4px 0;
  }
  
  .quantity-selector {
    font-size: 0.45rem !important;
    margin: 4px 0;
    gap: 4px;
  }
  
  .qty-label {
    font-size: 0.5rem;
  }
  
  .qty-dropdown {
    padding: 3px 6px;
    font-size: 0.5rem;
  }
  
  .price-info {
    font-size: 0.45rem !important;
  }
  
  .unit-price {
    font-size: 0.55rem;
  }
  
  .wishlist-btn, .buy-btn {
    padding: 4px 6px;
    font-size: 0.5rem;
    margin-top: 4px !important;
    border-radius: 5px;
  }
  
  .top-bar {
    gap: 4px;
    margin-bottom: 15px;
  }
  
  .search-container {
    max-width: 55%;
  }
  
  .search-bar {
    font-size: 0.45rem !important;
    padding: 3px 6px !important;
    height: 22px !important;
    border-radius: 20px;
  }
  
  .search-cancel-btn {
    font-size: 0.8rem;
    right: 8px;
  }
  
  .wishlist-icon, .filter-icon {
    font-size: 0.4rem !important;
    padding: 3px 6px !important;
    height: 20px !important;
    border-radius: 20px;
  }
  
  .wishlist-count {
    font-size: 5px;
    top: -1px;
    right: -1px;
    padding: 1px 3px;
    width: 14px;
    height: 14px;
  }
  
  #productViewMoreBtn {
    padding: 5px 15px;
    font-size: 0.7rem;
    margin-top: 15px;
  }
  
  /* GauLok/GauAnubhav Sections */
  .gaulok-title,
  .gau-dhaan-title,
  .contact-title {
    font-size: 1.2rem !important;
  }
  
  .gaulok-intro {
    font-size: 0.7rem;
  }
  
  .gaulokstay-section,
  .gauanubhav-section,
  .gau-dhaan-wrapper,
  .contact-wrapper,
  .faq-container {
    padding: 15px 10px;
    border-radius: 15px;
  }
  
  .gaulokstay-section h2 {
    font-size: 1.1rem;
  }
  
  .gaulokstay-section h3 {
    font-size: 0.9rem;
  }
  
  .price {
    font-size: 0.8rem;
  }
  
  .gaulokstay-section p {
    font-size: 0.65rem;
  }
  
  .contact-btn {
    padding: 6px 15px;
    font-size: 0.7rem;
  }
  
  /* Gau Anubhav Cards */
  .gauanubhav-card {
    min-width: 140px;
    max-width: 140px;
  }
  
  .gauanubhav-card img {
    height: 90px;
  }
  
  .gauanubhav-card h3 {
    font-size: 0.8rem;
  }
  
  .gauanubhav-card p {
    font-size: 0.65rem;
  }
  
  /* Accordion sections */
  .accordion-button {
    font-size: 0.6rem !important;
    padding: 8px 10px;
  }
  
  .accordion-body {
    font-size: 0.55rem !important;
    padding: 8px 10px;
  }
  
  /* Contact Form */
  .form-label {
    font-size: 0.7rem;
  }
  
  .form-control {
    font-size: 0.6rem !important;
    padding: 6px 8px;
  }
  
  .submit-btn {
    padding: 6px 15px;
    font-size: 0.7rem;
  }
  
  /* Footer */
  .footer {
    font-size: 0.6rem;
    padding: 8px 4px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  
  /* Buttons */
  #showTeamBtn,
  #hideTeamBtn {
    padding: 5px 15px;
    font-size: 0.7rem;
    margin-top: 10px;
  }
  
  /* Toast Notification */
  .toast-notification {
    padding: 8px 15px;
    font-size: 0.7rem;
  }
}