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

:root {
  --green: #3f6b3f;
  --green2: #2f5430;
  --bg: #f6f1e8;
  --paper: #fffaf2;
  --paper2: #f1e9dc;
  --wood: #3e2723;
  --wood2: #281815;
  --text: #2a2420;
  --muted: #7b6e66;
  --border: rgba(60, 40, 30, .12);
  --radius: 18px;
  --radiusLg: 26px;
  --shadow: 0 16px 34px rgba(0, 0, 0, .12);
  --shadow2: 0 10px 22px rgba(0, 0, 0, .10)
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes pop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes parallax {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

.animate-pop {
  animation: pop 0.3s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

.animate-parallax {
  animation: parallax 20s linear infinite;
}

/* Animation Delays */
.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

/* Organic Certification Badge Animation */
.organic-cert-badge {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.organic-cert-badge.animate {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Banner Animation */
.cta-banner {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.cta-banner.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonial Card Animation */
.testimonial-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.testimonial-card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* About Text Block Animation */
.about-text-block {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.about-text-block:nth-child(even) {
  transform: translateX(50px);
}

.about-text-block.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Product Card Hover Effects */
.product-card-hover {
  transition: all 0.3s ease;
}

.product-card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Parallax Background */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallax-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 195, 74, 0.8) 0%, rgba(121, 85, 72, 0.6) 100%);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
}

/* Organic Theme Colors */
.organic-green {
  color: #4CAF50 !important;
}

.organic-brown {
  color: #795548 !important;
}

.organic-cream {
  color: #F5F5DC !important;
}

.bg-organic-green {
  background-color: #4CAF50 !important;
}

.bg-organic-brown {
  background-color: #795548 !important;
}

.bg-organic-cream {
  background-color: #F5F5DC !important;
}

.bg-organic-light {
  background-color: #E8F5E8 !important;
}

/* Hero Badge Animation */
.site-hero-badge {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.site-hero-badge.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Organic Certification Badges */
.organic-cert-badge {
  border: 2px solid #4CAF50;
  background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
  transition: all 0.3s ease;
}

.organic-cert-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.organic-cert-badge i {
  filter: drop-shadow(0 2px 4px rgba(76, 175, 80, 0.3));
}

/* CTA Banner Styles */
.cta-banner {
  background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
  overflow: hidden;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }
}

/* Testimonial Styles */
.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
  border: 1px solid #E0E0E0;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card .card-body {
  padding: 2rem;
}

.testimonial-card .bi-quote {
  color: #4CAF50;
  font-size: 2rem;
  opacity: 0.3;
}

/* Responsive Animation Adjustments */
@media (max-width: 768px) {

  .animate-fade-in-left,
  .animate-fade-in-right {
    animation: fadeInUp 0.8s ease-out forwards;
  }

  .about-text-block:nth-child(even) {
    transform: translateX(-50px);
  }

  .parallax-bg {
    background-attachment: scroll;
  }
}

/* Organic Certification Badges */
.organic-cert-badge {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.organic-cert-badge.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax Background */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallax-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(63, 107, 63, 0.1) 0%, rgba(62, 39, 35, 0.1) 100%);
  z-index: 1;
}

/* Product Card Hover Effects */
.product-card-hover {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.product-card-hover:hover::before {
  left: 100%;
}

/* CTA Banner */
.cta-banner {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.cta-banner.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonial Cards */
.testimonial-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.testimonial-card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* About Us Section */
.about-text-block {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.about-text-block.animate {
  opacity: 1;
  transform: translateX(0);
}

.about-text-block.alt {
  transform: translateX(50px);
}

.about-text-block.alt.animate {
  transform: translateX(0);
}

/* Organic Theme Enhancements */
.organic-green {
  color: #2d5016;
}

.organic-brown {
  color: #8b4513;
}

.bg-organic-green {
  background-color: #2d5016;
}

.bg-organic-brown {
  background-color: #8b4513;
}

.bg-organic-light {
  background-color: #f5f5dc;
}

/* Responsive Animation Adjustments */
@media (max-width: 768px) {

  .animate-fade-in-left,
  .animate-fade-in-right {
    animation: fadeInUp 0.8s ease-out forwards;
  }

  .about-text-block,
  .about-text-block.alt {
    transform: translateY(30px);
  }

  .about-text-block.animate,
  .about-text-block.alt.animate {
    transform: translateY(0);
  }
}

body {
  font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background: radial-gradient(1200px 420px at 50% 0%, #fffdf7 0%, var(--bg) 70%);
  color: var(--text)
}

a {
  text-decoration: none
}

.bg-cream {
  background: linear-gradient(180deg, var(--wood), var(--wood2)) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.site-header .navbar {
  background: transparent !important;
}

.header-logo-wrapper {
  background: #ffffff;
  padding: 3px 8px 2px 0px;
  border-radius: 0 31px 30px 0;
  margin-top: -9px;
  margin-bottom: -8px;
  margin-left: -24px;
  display: inline-flex;
  align-items: center;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 15px rgba(255, 215, 0, 0.15);
}

.header-logo-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0 31px 30px 0;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.6), rgba(255, 235, 59, 0.3), rgba(255, 215, 0, 0.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.8;
  }
}

.site-header {
  border-bottom: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
}

/* Body padding to push content below fixed header - matches logo height */
body {
  padding-top: 100px;
}

/* Responsive header height and body padding */
@media (max-width: 991px) {
  body {
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }
}

/* Reset hero section margin */
.site-hero {
  margin-top: 0;
}

.site-brand {
  font-family: "Playfair Display", serif;
  letter-spacing: .2px
}

.nav-pill {
  color: rgba(255, 255, 255, .92) !important;
  display: inline-flex;
  align-items: center;
  padding: .5rem 1rem;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  transition: background-color .15s ease, transform .15s ease
}

.nav-pill:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-1px)
}

.nav-pill.active {
  background: rgba(63, 107, 63, .95);
  box-shadow: 0 10px 18px rgba(0, 0, 0, .18)
}

.site-search-addon {
  background: rgba(255, 255, 255, .10) !important;
  color: rgba(255, 255, 255, .88) !important;
  border-color: rgba(255, 255, 255, .18) !important
}

/* Header Action Icons Scalability */
.action-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
}

@media (max-width: 380px) {
  .header-actions {
    gap: 4px !important;
  }

  .action-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }

  .action-icon i {
    font-size: 0.95rem !important;
  }

  .site-header .container-fluid {
    padding-left: 8px !important;
    padding-right: 8px !important;
    overflow-x: hidden;
  }
}

/* Container spacing for small screens */
@media (max-width: 576px) {
  .site-header .container-fluid {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

.site-logo {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .18));
  height: 90px !important;
  width: 250px !important;
  max-width: 100%;
  object-fit: fill;
  display: block;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .site-logo {
    height: 57px !important;
    width: 158px !important;
  }

  .header-logo-wrapper {
    padding: 3px 8px 2px 6px;
    margin-top: -8px;
    margin-bottom: -8px;
    margin-left: -11px;
  }
}

@media (max-width: 360px) {
  .site-logo {
    height: 65px !important;
    width: 140px !important;
  }

  .header-logo-wrapper {
    padding: 2px 6px 2px 5px;
    margin-top: -3px;
    margin-bottom: -3px;
    margin-left: -5px;
  }
}

/* Mobile dropdown fix - make dropdown appear outside header */
/* Applies to ALL screen sizes where hamburger shows (navbar-expand-xl = below 1200px) */
@media (max-width: 1199.98px) {
  .site-header {
    overflow: visible !important;
  }

  .site-header .navbar {
    overflow: visible !important;
    position: relative !important;
  }

  .site-header .container-fluid {
    overflow: visible !important;
    flex-wrap: wrap !important;
  }

  .dropdown-mobile {
    position: static !important;
  }

  .dropdown-menu-mobile {
    position: fixed !important;
    top: 70px !important;
    right: 10px !important;
    left: auto !important;
    transform: none !important;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    width: calc(100% - 20px) !important;
    max-width: 300px !important;
  }

  /* Hamburger menu fix - make navbar-collapse open BELOW header, not to the right */
  #navbarContent,
  .navbar-collapse {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: linear-gradient(180deg, var(--wood), var(--wood2)) !important;
    max-height: calc(100vh - 80px) !important;
    overflow-y: auto !important;
    padding: 15px !important;
    z-index: 1050 !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
    border-radius: 0 0 16px 16px !important;
    margin-top: 0 !important;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    visibility: visible !important;
  }

  .navbar-collapse:not(.show):not(.collapsing) {
    display: none !important;
  }

  /* Nav items stack vertically */
  .navbar-collapse .navbar-nav {
    flex-direction: column !important;
    width: 100% !important;
  }

  .navbar-collapse .nav-item {
    width: 100% !important;
  }

  .navbar-collapse .nav-link {
    padding: 10px 15px !important;
    border-radius: 10px !important;
  }

  .navbar-collapse .nav-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  /* Fix Products dropdown inside mobile menu */
  .navbar-collapse .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: none !important;
    box-shadow: none !important;
    padding: 5px 0 !important;
    margin: 0 !important;
    border-radius: 10px !important;
  }

  .navbar-collapse .dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 8px 20px !important;
  }

  .navbar-collapse .dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
  }

  .navbar-collapse .dropdown-menu .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.15) !important;
  }

  /* Search box in mobile menu */
  .navbar-collapse .search-box-wrapper {
    max-width: 100% !important;
    margin-left: 0 !important;
  }
}

/* Search Box Hub Max Fix */
@media (min-width: 1200px) {
  .search-box-wrapper {
    margin-left: 15px !important;
    flex-shrink: 1;
    /* Allow it to shrink if needed */
    max-width: 280px !important;
    /* Smaller default for xl */
  }
}

@media (min-width: 1400px) {
  .search-box-wrapper {
    max-width: 400px !important;
    /* Larger on very wide screens */
  }
}

/* Search Box Responsive Fix - Prevent breaking to new line */
@media (max-width: 1399px) {
  .search-box-wrapper .input-group {
    min-width: 200px;
  }
}

@media (max-width: 767px) {
  .search-box-wrapper {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .search-box-wrapper .input-group {
    min-width: 100%;
  }

  .search-box-wrapper .input-group-text,
  .search-box-wrapper .form-control,
  .search-box-wrapper .btn {
    font-size: 0.85rem;
  }

  .search-box-wrapper .btn {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .search-box-wrapper .btn {
    padding-left: 8px;
    padding-right: 8px;
    white-space: nowrap;
  }
}

.site-search-input {
  background: rgba(255, 255, 255, .10) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, .18) !important
}

.site-search-input::placeholder {
  color: rgba(255, 255, 255, .7)
}

.site-search-input:focus {
  box-shadow: none;
  border-color: rgba(255, 255, 255, .28) !important
}

.btn-success {
  background: var(--green);
  border-color: var(--green)
}

.btn-success:hover {
  background: var(--green2);
  border-color: var(--green2)
}

.btn-outline-success {
  color: var(--green);
  border-color: rgba(63, 107, 63, .55);
  background: transparent
}

.btn-outline-success:hover {
  background: rgba(63, 107, 63, .10);
  color: var(--green2);
  border-color: rgba(63, 107, 63, .75)
}

.site-btn,
.site-btn-outline {
  border-radius: 999px
}

.site-header .btn-outline-success {
  color: #e8f3e6;
  border-color: rgba(232, 243, 230, .55)
}

.site-header .btn-outline-success:hover {
  background: rgba(232, 243, 230, .16);
  color: #fff;
  border-color: rgba(232, 243, 230, .75)
}

.site-hero {
  padding: 18px 0 24px
}

.site-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radiusLg);
  min-height: 240px;
  box-shadow: var(--shadow);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.site-hero-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 235, 220, .92) 0%, rgba(246, 235, 220, .72) 46%, rgba(246, 235, 220, .0) 74%)
}

.site-hero-content {
  position: relative;
  max-width: 560px;
  padding: 48px 46px
}

.site-hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2.65rem;
  line-height: 1.05;
  margin: 0 0 10px
}

.site-hero-subtitle {
  color: rgba(42, 36, 32, .78);
  max-width: 480px;
  margin: 0
}

.site-hero-cta {
  padding: .72rem 1.55rem;
  font-weight: 600
}

.site-hero-badges-wrapper {
  margin-top: -30px;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 0 1rem
}

.site-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #e8f5e9;
  border-bottom: 4px solid #c8e6c9;
  border-radius: 999px;
  padding: 12px 24px;
  box-shadow: 0 10px 25px rgba(63, 107, 63, 0.12)
}

@media (max-width: 768px) {
  .site-hero-badges {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    width: 100%;
    padding: 8px 12px;
    gap: 0.6rem;
    /* For touch target if scrollbar hidden */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .site-hero-badges::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .site-hero-badge {
    font-size: 0.75rem;
    gap: 4px;
    padding: 0.1rem 0.3rem;
  }

  .site-hero-badge i {
    font-size: 0.85rem !important;
  }
}

.site-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green2);
  font-size: 1rem;
  padding: .2rem .5rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0
}

.site-hero-badge i {
  color: var(--green);
  filter: drop-shadow(0 2px 4px rgba(63, 107, 63, 0.2));
  font-size: 1.2rem
}

.qty-control {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--green);
  border-radius: 999px;
  overflow: hidden
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s
}

.qty-btn:hover {
  background: var(--green2)
}

.qty-val {
  width: 50px;
  height: 40px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--border);
  outline: none;
  color: var(--text) !important;
  background-color: white !important;
  appearance: none !important;
  -moz-appearance: textfield !important;
  padding: 4px 0;
  margin: 0 !important;
  font-family: inherit;
  line-height: 1.2;
}

.qty-val::-webkit-outer-spin-button,
.qty-val::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pill {
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--border);
  padding: .42rem .86rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(42, 36, 32, .82);
  box-shadow: 0 8px 16px rgba(0, 0, 0, .06);
  white-space: nowrap;
}

.pill:hover {
  background: #fff
}

.pill.active {
  background: rgba(63, 107, 63, .12);
  border-color: rgba(63, 107, 63, .28);
  color: var(--green);
  font-weight: 600
}

.filter-card {
  border-radius: var(--radius);
  background: var(--paper2);
  border: 1px solid var(--border);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .06)
}

.filter-card .btn {
  border-radius: 12px
}

.product-card {
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: 0 12px 22px rgba(0, 0, 0, .08);
  overflow: hidden
}

.product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #fff
}

.product-card .title {
  font-weight: 600
}

/* Cart-specific card override to prevent dropdown clipping */
.cart-card {
  overflow: visible;
  position: relative
}

.cart-card .dropdown-menu {
  z-index: 2000
}

.badge-organic {
  background: rgba(63, 107, 63, .95);
  color: #fff;
  border-radius: 999px;
  font-size: .72rem;
  padding: .3rem .55rem
}

.price {
  color: #7b3e2a;
  font-weight: 600
}

.category-tile {
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: 0 12px 22px rgba(0, 0, 0, .08);
  overflow: hidden
}

.category-tile img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover
}

footer.bg-cream {
  background: linear-gradient(180deg, var(--wood), var(--wood2)) !important;
  border-top: 1px solid rgba(255, 255, 255, .14)
}

footer .text-success {
  color: #cfe6c9 !important
}

footer .text-dark {
  color: rgba(255, 255, 255, .86) !important
}

footer .text-muted {
  color: rgba(255, 255, 255, .7) !important
}

.cart-item {
  gap: 1rem
}

.cart-controls {
  gap: 1rem
}

.cart-weight .btn {
  min-width: 64px
}

.cart-item .price {
  min-width: 80px;
  text-align: right
}

/* ============= CART WEIGHT SELECTOR CSS START ============= */
/* ADD YOUR DESKTOP AND MOBILE CSS HERE */
/* .cart-weight-selector{} */
/* .cart-weight-selector .badge{} */
/* .cart-weight-selector .dropdown-toggle{} */
/* .cart-weight-selector .dropdown-menu{} */
/* .cart-weight-selector .dropdown-item{} */
/* .cart-weight-selector .dropdown-item:hover{} */
/* .cart-weight-selector .dropdown-item .text-muted{} */
/* @media (max-width: 768px) { ... } */
/* ============= CART WEIGHT SELECTOR CSS END ============= */

.site-logo {
  width: 180px;
  height: 80px
}

.navbar .container {
  gap: .75rem
}

.navbar .navbar-brand {
  margin-right: 1rem
}

.navbar .navbar-collapse {
  flex-grow: 1
}

.navbar .input-group .form-control {
  min-width: 180px
}

@media (max-width: 992px) {
  .navbar .input-group .form-control {
    min-width: 120px
  }
}

/* Header Profile Button - Gap between wishlist/cart and login */
.header-profile-btn {
  margin-left: 4px !important;
}

/* Search Box - Make it smaller */
.search-box {
  max-width: 450px !important;

}

.search-box .input-group-text {
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
}

.search-box .form-control {
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
}

.search-box .btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.85rem;
}


footer a.text-dark:hover {
  color: #fff !important
}

footer .form-control {
  border-radius: 999px 0 0 999px
}

footer .btn {
  border-radius: 0 999px 999px 0
}

.pagination .page-link {
  border-radius: 999px;
  margin: 0 3px;
  border: 1px solid var(--border);
  color: rgba(42, 36, 32, .78);
  background: var(--paper)
}

.pagination .page-item.active .page-link {
  background: rgba(63, 107, 63, .95);
  border-color: rgba(63, 107, 63, .95);
  color: #fff
}

.pagination .page-link:hover {
  background: #fff
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (max-width: 768px) {
  .site-hero-content {
    padding: 26px 22px
  }

  .site-hero-title {
    font-size: 2rem
  }

  .site-hero-card {
    min-height: 200px
  }

  /* .site-hero-badges{border-radius:18px} */
  .navbar-nav {
    gap: 0.5rem !important
  }

  .navbar-nav .nav-item {
    width: 100%
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    text-align: center
  }

  .navbar-nav .nav-item .input-group {
    width: 100%
  }

  .site-btn {
    width: 100%;
    justify-content: center
  }

  .filter-card {
    margin-bottom: 1.5rem
  }

  .pagination {
    justify-content: center !important
  }


  .site-hero-badges {
    display: flex;
    flex-wrap: nowrap;
    /* ek hi line me rahe */
    justify-content: center;
    gap: 0.1rem;
    /* gap aur chhota */
  }

  .site-hero-badge {
    font-size: 0.4rem;
    /* font size chhota */
    padding: 0.1rem 0.4rem;
    /* padding thodi aur kam */
    white-space: nowrap;
    /* line break na ho */
  }

  .site-hero-badges-wrapper {
    margin-top: -0.90rem;
    /* thoda aur upar shift */
  }


  /* buttonn css */
  .btn,
  .btn-outline-success,
  .btn-success {
    font-size: 0.6rem;
    /* mobile me chhota text */
    padding: 0.35rem 0.75rem;
    /* thoda padding bhi adjust karo agar zaroori ho */
  }


  .site-hero-title {
    font-size: 1.5rem;
    /* mobile ke liye chhota size */
    line-height: 1.1;
    /* line spacing adjust kar sakte ho */
  }

  @media (max-width: 768px) {
    .site-hero-cta.btn.btn-success.site-btn {
      font-size: 0.8rem;
      /* text chhota */
      padding: 0.2rem .1rem;
      /* button height aur width proportionally chhota */
    }
  }

}










/* =========================================
   AMRIT BASKET THEME - SCOPED CSS
   ========================================= */
.amrit-eco-section {
  /* आपकी वेबसाइट से लिए गए कलर्स */
  --amrit-green: #3d633d;
  /* Forest Green from your buttons */
  --amrit-yellow: #f1b317;
  /* Mustard Yellow from your badges */
  --amrit-brown: #2d1b15;
  /* Dark Brown from your header */
  --amrit-bg: #f9f6f1;
  /* Off-white from your background */
  --amrit-white: #ffffff;

  background-color: var(--amrit-bg);
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  /* या जो आपकी साइट की फॉन्ट है */
  overflow: hidden;
}

.amrit-eco-section .amrit-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* --- IMPORTANT STATEMENT (महत्व वाली लाइन) --- */
.amrit-eco-section .amrit-mission-box {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  padding: 30px;
  background: var(--amrit-white);
  border-radius: 30px;
  /* Soft Claymorphism Shadow */
  box-shadow: 10px 10px 20px #e0ddd7, -10px -10px 20px #ffffff;
}

.amrit-eco-section .amrit-main-line {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--amrit-brown);
  font-weight: 500;
  margin: 0;
}

.amrit-eco-section .hl-green {
  color: var(--amrit-green);
  font-weight: 700;
}

.amrit-eco-section .hl-yellow {
  color: var(--amrit-yellow);
  font-weight: 700;
  border-bottom: 3px solid var(--amrit-yellow);
}

/* --- GRID & 3D CARDS --- */
.amrit-eco-section .amrit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.amrit-eco-section .amrit-card {
  background: var(--amrit-bg);
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  transition: all 0.4s ease;
  /* Claymorphism style to match your 'Amrit Basket' look */
  box-shadow: 8px 8px 16px #e0ddd7, -8px -8px 16px #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.amrit-eco-section .amrit-card:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 25px #d1cec8, -12px -12px 25px #ffffff;
}

/* --- 3D ICONS --- */
.amrit-eco-section .amrit-icon-wrapper {
  margin-bottom: 20px;
}

.amrit-eco-section .amrit-3d-emoji {
  font-size: 4rem;
  display: inline-block;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

/* --- TYPOGRAPHY --- */
.amrit-eco-section .amrit-card-title {
  color: var(--amrit-brown);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.amrit-eco-section .amrit-card-desc {
  color: var(--amrit-green);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

/* --- ANIMATIONS --- */
@keyframes amritFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.amrit-eco-section .amrit-animate,
.amrit-eco-section .amrit-card {
  animation: amritFadeUp 0.8s ease-out forwards;
  opacity: 0;
}

.amrit-eco-section .amrit-delay-1 {
  animation-delay: 0.2s;
}

.amrit-eco-section .amrit-delay-2 {
  animation-delay: 0.4s;
}

.amrit-eco-section .amrit-delay-3 {
  animation-delay: 0.6s;
}

/* Floating Effect for Icons */
@keyframes amritFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.amrit-eco-section .floating {
  animation: amritFloat 4s ease-in-out infinite;
}

.amrit-eco-section .floating-alt {
  animation: amritFloat 4s ease-in-out infinite;
  animation-delay: 1s;
}

/* Responsive */
@media (max-width: 768px) {
  .amrit-eco-section .amrit-main-line {
    font-size: 1.2rem;
  }

  .amrit-eco-section .amrit-3d-emoji {
    font-size: 3rem;
  }
}

















/* Footer leafy label */
.footer-divider {
  width: 100%;
  height: 42px;
  /* 👈 label height thodi badi */
  padding: 6px 0;
  /* 👈 top-bottom space */
  overflow: hidden;
  background: #faf7f2;
  /* page background */
}

/* Image styling */
.footer-divider img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.9;

  /* 👇 Soft organic green color */
  filter: brightness(0) saturate(100%) invert(36%) sepia(28%) saturate(420%) hue-rotate(80deg) brightness(92%) contrast(90%);
}

/* Gentle natural movement */
.footer-divider img {
  animation: leafFloat 9s ease-in-out infinite;
}

@keyframes leafFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Mobile adjustment */
@media (max-width:768px) {
  .footer-divider {
    height: 34px;
    padding: 5px 0;
  }
}


/* Premium Product Detail Styles */
.product-detail-container {
  padding: 60px 0;
}

.product-image-wrapper {
  background: #fff;
  border-radius: var(--radiusLg);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image-wrapper img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.product-info-column {
  padding-left: 40px;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--wood);
  margin-bottom: 10px;
  line-height: 1.2;
}

.product-price-large {
  font-size: 2rem;
  color: #7b3e2a;
  font-weight: 700;
  margin: 15px 0;
}

.trust-badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(63, 107, 63, 0.08);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--green2);
  font-weight: 500;
  border: 1px solid rgba(63, 107, 63, 0.15);
}

.trust-badge-item i {
  color: var(--green);
}

.weight-selector-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.weight-btn {
  border: 2px solid var(--border);
  background: var(--paper);
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.weight-btn:hover {
  border-color: var(--green);
  background: rgba(63, 107, 63, 0.05);
}

.weight-btn.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 12px rgba(63, 107, 63, 0.25);
}

/* Related Products Styles */
.related-products-section {
  margin-top: 80px;
  padding-top: 50px;
  border-top: 1px dashed var(--border);
}

.section-title-premium {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--wood);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-title-premium:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--green);
  margin: 15px auto 0;
  border-radius: 999px;
  opacity: 0.6;
}

/* Enhanced Product Card for Listing */
.product-card-premium {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(63, 107, 63, 0.2);
}

.product-card-premium .img-container {
  position: relative;
  padding: 15px;
  background: #fff;
  border-radius: var(--radius) var(--radius) 0 0;
}

.product-card-premium img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card-premium:hover img {
  transform: scale(1.08);
}

.product-card-premium .card-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-premium .category-tag {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.product-card-premium .product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wood);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card-premium .price-row {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Dropdown Select Styling with Arrow */
select.form-control,
select.form-control-sm {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233f6b3f' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 32px;
  cursor: pointer;
}

select.form-control:focus,
select.form-control-sm:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(63, 107, 63, 0.15);
}

@media (max-width: 768px) {
  .product-info-column {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-info-column nav {
    width: 100%;
  }

  .product-info-column .breadcrumb {
    justify-content: center;
  }

  /* Center all flex containers inside product info */
  .product-info-column .d-flex {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }

  /* Specific handling for the buttons container which switches direction */
  .product-info-column .d-flex.flex-column {
    align-items: center;
  }

  /* Trust badges grid */
  .product-info-column .row {
    justify-content: center;
    width: 100%;
  }

  /* Trust badges content */
  .product-info-column .bg-light {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .product-title {
    font-size: 2rem;
  }

  .product-detail-container {
    padding: 40px 0;
  }

  /* Ensure buttons don't stretch too wide */
  .product-info-column button.btn {
    width: 100%;
    max-width: 350px;
  }

  /* Fix for quantity selector buttons */
  .product-info-column .input-group button.btn {
    width: auto;
  }

  .product-info-column .input-group {
    justify-content: center;
  }
}

/* Login Modal Styles */
.login-modal .modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #fff;
  max-width: 440px;
  width: 100%;
}

.login-modal .modal-dialog {
  max-width: 90vw;
  width: 100%;
  margin: 0 auto !important;
}

.login-modal .modal-header {
  border: none;
  padding: 15px 15px 0;
  position: relative;
  z-index: 2;
  background: #fff;
}

.login-modal .modal-body {
  padding: 0 !important;
  text-align: center;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.login-modal .login-main-content {
  padding: 20px 20px 30px;
  width: 100%;
}

.login-modal .back-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #333;
  transition: all 0.2s;
  float: left;
  font-size: 1.2rem;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-modal .back-btn i {
  font-size: 1.2rem;
}

.login-modal .login-logo {
  display: inline-block;
  margin: 10px auto 20px;
  width: 60px !important;
  height: 60px !important;
  object-fit: contain;
  background: #ffdb33;
  border-radius: 12px;
  padding: 8px;
}

.login-modal .login-title {
  font-size: clamp(1.3rem, 5vw, 1.6rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  word-wrap: break-word;
}

.login-modal .login-subtitle {
  font-size: clamp(0.9rem, 4vw, 1.1rem);
  color: #666;
  font-weight: 400;
  margin-bottom: 25px;
  word-wrap: break-word;
}

.login-modal .mobile-input-group {
  border: 2px solid #dcdcdc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 15px;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.login-modal .mobile-input-group:focus-within {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.login-modal .country-code {
  font-weight: 600;
  font-size: clamp(0.9rem, 3vw, 1rem);
  color: #333;
  padding-right: 15px;
  border-right: 1.5px solid #eee;
  margin-right: 15px;
  white-space: nowrap;
}

.login-modal .mobile-input {
  border: none;
  outline: none;
  width: 100%;
  font-size: clamp(1rem, 4vw, 1rem);
  font-weight: 400;
  color: #333;
  padding: 0;
  background: transparent;
}

.login-modal .mobile-input::placeholder {
  color: #999;
  font-size: clamp(0.9rem, 3vw, 1rem);
}

.login-modal .continue-btn {
  background: #a9a9a9;
  color: white;
  border: none;
  border-radius: 12px;
  width: 100%;
  padding: 16px 14px;
  font-size: clamp(0.95rem, 3vw, 1rem);
  font-weight: 600;
  cursor: not-allowed;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.login-modal .continue-btn.active,
.login-modal .continue-btn.theme-green {
  background: #198754;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
}

.login-modal .continue-btn:hover.active {
  background: #157347;
  transform: translateY(-2px);
}

.login-modal .continue-btn:disabled {
  opacity: 0.6;
}

.login-modal .login-footer-area {
  background: #fbfbfb;
  padding: 15px 20px;
  border-top: 1px solid #f2f2f2;
  width: 100%;
  box-sizing: border-box;
}

.login-modal .login-footer {
  font-size: clamp(0.65rem, 2vw, 0.75rem);
  color: #666;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
}

.login-modal .login-footer a {
  color: #198754;
  text-decoration: none;
  border-bottom: 1px solid #198754;
  transition: all 0.2s ease;
}

.login-modal .login-footer a:hover {
  color: #157347;
}

.login-modal .otp-input-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(6px, 2vw, 10px);
  margin-bottom: 25px;
  width: 100%;
  padding: 0;
}

.login-modal .otp-box,
.login-modal .email-otp-box {
  aspect-ratio: 1;
  border: 2px solid #dcdcdc;
  border-radius: 10px;
  text-align: center;
  font-size: clamp(1.2rem, 4vw, 1.4rem);
  font-weight: 700;
  outline: none;
  width: 100%;
  background: #fff;
  color: #333;
  transition: all 0.3s ease;
  min-height: 45px;
}

.login-modal .otp-box:focus,
.login-modal .email-otp-box:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
  transform: scale(1.05);
}

.login-modal .otp-box:filled {
  background: #f0fff4;
}

.login-modal .otp-timer {
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  color: #666;
  margin-bottom: 15px;
  word-wrap: break-word;
}

.login-modal .otp-timer a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* OTP Display Box (Top-up Style) */
.login-modal .otp-display-box {
  background: linear-gradient(135deg, #f0fff4 0%, #e6ffed 100%);
  border: 2px dashed #00b259;
  border-radius: 16px;
  padding: clamp(16px, 4vw, 24px);
  margin: 20px 0 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 178, 89, 0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.login-modal .otp-display-box:hover {
  box-shadow: 0 15px 35px rgba(0, 178, 89, 0.15);
  transform: translateY(-3px);
}

.login-modal .otp-display-label {
  font-size: clamp(0.65rem, 2vw, 0.75rem);
  color: #00b259;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  background: rgba(0, 178, 89, 0.1);
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.login-modal .otp-display-code {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: clamp(6px, 3vw, 10px);
  margin-bottom: 12px;
  font-family: 'DM Sans', 'Courier New', monospace;
  padding: 5px;
  user-select: all;
  display: block;
  word-break: break-all;
}

.login-modal .otp-display-hint {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 500;
  flex-wrap: wrap;
}

.login-modal .otp-display-hint i {
  color: #00b259;
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  flex-shrink: 0;
}

.login-modal .otp-banner {
  position: fixed;
  top: 10px;
  left: 50%;
  width: calc(100% - 40px);
  max-width: 420px;
  transform: translateX(-50%) translateY(-150%);
  z-index: 11000;
  padding: 0 20px;
  box-sizing: border-box;
}

.login-modal .otp-banner.otp-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(-150%);
  pointer-events: none;
}

.login-modal .otp-banner.otp-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition: transform .4s ease, opacity .4s ease;
}

.login-modal .modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

/* Improved Mobile Responsiveness */
@media (max-width: 360px) {
  .login-modal .modal-content {
    max-width: 100%;
    margin: 10px;
    border-radius: 16px;
  }

  .login-modal .login-main-content {
    padding: 15px 15px 25px;
  }

  .login-modal .login-title {
    font-size: 1.3rem;
  }

  .login-modal .otp-input-container {
    gap: 6px;
  }

  .login-modal .otp-box,
  .login-modal .email-otp-box {
    min-height: 40px;
    font-size: 1.1rem;
  }

  .login-modal .continue-btn {
    padding: 14px 12px;
    min-height: 44px;
  }

  .login-modal .country-code {
    padding-right: 10px;
    margin-right: 10px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .login-modal .modal-content {
    border-radius: 20px;
    margin: 10px;
    max-width: calc(100% - 20px);
  }

  .login-modal .login-main-content {
    padding: 15px 18px 25px;
  }

  .login-modal .modal-dialog {
    margin: 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .login-modal .login-logo {
    width: 55px !important;
    height: 55px !important;
    margin: 8px auto 15px;
  }

  .login-modal .login-title {
    font-size: 1.35rem;
    margin-bottom: 6px;
  }

  .login-modal .login-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .login-modal .mobile-input-group {
    padding: 11px 12px;
    margin-bottom: 14px;
  }

  .login-modal .country-code {
    font-size: 0.9rem;
    padding-right: 12px;
    margin-right: 12px;
  }

  .login-modal .mobile-input {
    font-size: 1rem;
  }

  .login-modal .otp-input-container {
    gap: 7px;
    margin-bottom: 22px;
  }

  .login-modal .otp-box,
  .login-modal .email-otp-box {
    min-height: 44px;
    font-size: 1.2rem;
  }

  .login-modal .continue-btn {
    padding: 14px 12px;
    min-height: 48px;
    font-size: 0.95rem;
  }

  .login-modal .otp-display-box {
    padding: 18px;
    margin: 18px 0 25px;
  }

  .login-modal .login-footer-area {
    padding: 12px 18px;
  }

  .login-modal .login-footer {
    font-size: 0.7rem;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .login-modal .modal-content {
    max-width: 90vw;
    margin: 0 auto;
  }

  .login-modal .login-main-content {
    padding: 18px 25px 30px;
  }

  .login-modal .mobile-input-group {
    padding: 12px 14px;
  }

  .login-modal .otp-input-container {
    gap: 8px;
  }

  .login-modal .otp-box,
  .login-modal .email-otp-box {
    min-height: 48px;
    font-size: 1.3rem;
  }
}

@media (min-width: 769px) {
  .login-modal .modal-content {
    max-width: 440px;
  }

  .login-modal .login-main-content {
    padding: 20px 40px 30px;
  }

  .login-modal .modal-dialog-centered {
    min-height: calc(100vh - 3.5rem);
  }
}

/* Mobile Responsiveness for Hero */
@media (max-width: 768px) {
  .site-hero-title {
    font-size: 1.8rem;
  }

  .site-hero-content {
    padding: 24px 20px;
    text-align: center;
    margin: 0 auto;
  }

  .site-hero-subtitle {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
  }

  .site-hero-badges-wrapper {
    margin-top: -5px;
    padding: 0 0.4rem;
  }

  .site-hero-badges {
    flex-direction: row;
    flex-wrap: wrap;
    overflow: visible;
    gap: 0.15rem;
    padding: 3px;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .site-hero-badges::-webkit-scrollbar {
    display: none;
  }

  .site-hero-badge {
    font-size: 0.55rem;
    width: auto;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 2px 2px;
  }

  .site-hero-badge i {
    font-size: 0.7rem !important;
  }

  .site-hero-badge i {
    font-size: 1rem !important;
  }

  /* Category Tiles Mobile */
  .category-tile h6 {
    font-size: 0.75rem;
  }

  .category-tile img {
    max-height: 48px !important;
  }
}

/* Product Card Blinkit Style */
.product-card-blinkit {
  transition: all 0.2s ease-in-out;
  background: #fff;
}

.product-card-blinkit:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.product-card-blinkit .img-container {
  background: linear-gradient(180deg, rgba(248, 249, 250, 0) 0%, rgba(248, 249, 250, 0.5) 100%);
}

/* Mobile Login Modal Z-index Fix */
@media (max-width: 768px) {
  .login-modal {
    z-index: 10000 !important;
  }

  .login-modal .modal-dialog {
    z-index: 10001 !important;
  }

  .login-modal .modal-backdrop {
    z-index: 9999 !important;
  }
}

/* Zepto/Blinkit Style Product Listing */
.product-card-zepto {
  background: #fff;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

.product-card-zepto:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: #e0e0e0;
}

.card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  pointer-events: none;
}

.discount-badge {
  background: #256fef;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  display: block;
  margin-top: 4px;
  width: fit-content;
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.wishlist-btn:active {
  transform: scale(0.85);
}

.p-image-container {
  padding: 15px;
  text-align: center;
  position: relative;
  display: block;
}

.p-image-container img {
  max-height: 160px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card-zepto:hover .p-image-container img {
  transform: scale(1.05);
}

.delivery-time {
  position: absolute;
  bottom: 0;
  left: 10px;
  background: #fff;
  font-weight: 800;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

.card-body-zepto {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fs-11 {
  font-size: 11px;
}

.p-title {
  font-weight: 600;
  font-size: 13px;
  color: #222;
  line-height: 1.4;
}

.btn-zepto-add {
  background: #fff;
  color: #198754;
  border: 1px solid #198754;
  padding: 6px 16px;
  font-weight: 800;
  font-size: 12px;
  border-radius: 8px;
  transition: all 0.2s;
}

.btn-zepto-add:hover {
  background: #f0fff0;
}

.btn-zepto-add:active {
  transform: scale(0.95);
}

.options-text {
  font-size: 8px;
  color: #999;
  text-align: center;
  margin-top: 2px;
  font-weight: 600;
}

.p-pagination {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #333;
}

@media (max-width: 576px) {
  .p-pagination {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .pagination {
    gap: 0.5rem !important;
  }

  .p-title {
    font-size: 12px;
  }

  .p-image-container img {
    max-height: 120px;
  }

  .btn-zepto-add {
    padding: 5px 12px;
    font-size: 11px;
  }
}

/* =============================================
   MOBILE OVERFLOW & SPACING FIX
   1. Hides horizontal scrollbar (overflow-x)
   2. Pulls badges in to prevent overflow
   3. Reduces container padding to 8px
   ============================================= */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

@media (max-width: 767px) {

  /* Prevent horizontal scroll from bad elements */
  body {
    position: relative;
    width: 100%;
  }

  /* 1. Fix Badge Width Overflow */
  /* Pull badges slightly inside instead of hanging 50% out */
  .position-absolute.start-100.translate-middle {
    left: 90% !important;
    transform: translate(-50%, -50%) !important;
  }

  /* 2. Fix Container Padding (User requested edge-to-edge feel) */
  .container,
  .container-sm,
  .container-fluid {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  /* 3. Tighter Grid */
  .row.g-3 {
    --bs-gutter-x: 0.5rem;
  }

  /* Hero Section */
  .site-hero {
    padding-top: 10px;
    padding-bottom: 15px;
  }

  .site-hero .container {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
}

/* Button Disabled States */
button:disabled,
.btn:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}