/* ========================================
   MOBILE-FIRST CSS - DRYFRUIT WEBSITE
   Base styles = Mobile (default)
   Tablet: min-width: 768px
   Desktop: min-width: 1200px
   ======================================== */

/* ===== RESET & BASE ===== */
* {
  box-sizing: border-box;
  /* font-family: "Work Sans", sans-serif; */
  font-family: "Poppins";
  --primary-color: #2c3e50;
  --green-color: #00523d;
  --green-color-dark: #04291d;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: "Poppins";
}

h2 {
  font-family: "Poppins";
  font-weight: 700;
}

h3,
h4,
h6 {
  font-family: "Poppins";
  font-weight: 600;
}

p {
  font-family: "Poppins";
  font-weight: 400;
}

a {
  text-decoration: none;
  font-family: "Poppins";
  font-weight: 400;
}

span {
  font-family: "Poppins";
  font-weight: 400;
}

label {
  font-family: "Poppins";
  font-weight: 400;
}

body.no-scroll {
  overflow: hidden;
}

/* ===== CONTAINER (MOBILE-FIRST) ===== */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 100%;
}

/* ===== ANIMATION ===== */
.block-1 {
  width: 100%;
  overflow: hidden;
  padding-bottom: 50px;
}

.animation-1 {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: 50px;
}

.block-img-1 {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  margin-right: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  font-family: "Poppins";
}

.block-img-1::after {
  content: "•";
  position: absolute;
  right: -25px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins";
}

/* ===== TOPBAR ===== */
.topbar {
  background-color: #00523b;
  height: auto;
  min-height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@keyframes scrollText {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ===== HEADER (MOBILE DEFAULT) ===== */
.site-header {
  background: linear-gradient(90deg, #00523b, #6ba471);
  padding: 0;
  position: relative;
  border-bottom: none;
  z-index: 1;
}

.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle, rgba(255, 215, 0, 0.4) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 105, 180, 0.4) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(0, 206, 209, 0.4) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 1.5px, transparent 1.5px);
  background-size:
    40px 40px,
    60px 60px,
    50px 50px,
    55px 55px;
  background-position:
    0 0,
    15px 15px,
    30px 8px,
    8px 25px;
  opacity: 0.4;
  animation: confetti-float 25s linear infinite;
  z-index: -1;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.15) 45%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0.15) 55%,
      transparent 100%);
  animation: shimmer 4s infinite;
  z-index: -1;
}

@keyframes confetti-float {
  0% {
    background-position:
      0 0,
      15px 15px,
      30px 8px,
      8px 25px;
  }

  100% {
    background-position:
      40px 40px,
      75px 75px,
      80px 58px,
      63px 80px;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(50%);
  }
}

.desktop-header {
  display: none;
}

.mobile-header {
  display: block;
}

.header-main-row {
  display: grid;
  grid-template-columns: 60px 1fr 100px;
  align-items: center;
  padding: 5px 15px;
  min-height: 70px;
}

/* Hamburger Menu */
.hamburger-menu-trigger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  justify-self: start;
}

.hamburger-menu-trigger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
}

.hero-section h1 {
  font-size: 28px;
  text-transform: capitalize;
  width: 43%;
}

.hamburger-icon {
  width: 22px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger-menu.active .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Logo */
.mobile-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mobile-logo img {
  width: 140px;
  max-width: 100%;
  height: auto;
}

.logo-tagline {
  font-size: 10px;
  color: #fff;

  letter-spacing: 1px;
  margin-top: 2px;
  font-weight: 500;
}

/* Desktop Logo (hidden on mobile) */
.logo {
  color: #fff;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo img {
  width: 135px;
  height: auto;
}

.logo h2 {
  margin: 0;
  font-size: 18px;
}

.logo-text {
  font-size: 10px;
  color: #fff;
  margin-top: 2px;
  font-weight: 500;
}

/* Header Left (desktop only) */
.header-left {
  display: none;
  align-items: center;
}

/* Mobile Header Icons */
.mobile-header-icons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  align-items: center;
}

.mobile-icon-link {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-icon-link svg {
  width: 24px;
  height: 24px;
}

.mobile-cart-icon {
  position: relative;
}

.mobile-cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ff4d4d;
  color: #fff;
  font-size: 10px;
  width: 18px !important;
  height: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  font-weight: 600;
  padding: 0 !important;
  line-height: 1 !important;
  z-index: 10;
}

/* Desktop Header Right (hidden on mobile) */
.header-right {
  display: none;
  align-items: center;
  gap: 22px;
}

/* Icons */
.icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icons svg {
  width: 22px;
  height: 22px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}

.icons svg:hover {
  transform: scale(1.1);
}

.delivery-icon svg {
  width: 24px;
  height: 24px;
}

/* Cart */
.cart {
  position: relative;
  display: flex;
  align-items: center;
}

.cart span {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ff4d4d;
  color: #fff;
  font-size: 10px;
  width: 18px !important;
  height: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  font-weight: 600;
  padding: 0 !important;
  line-height: 1 !important;
}

/* ===== SEARCH SECTION (MOBILE) ===== */
.search-section {
  background: #f8f9fa;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-search-row {
  padding: 10px 15px;
  height: 80px;
}

.mobile-search-bar {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 5px 10px;
  width: 100%;
}

.mobile-search-bar svg {
  color: #666;
  margin-right: 10px;
}

.mobile-search-bar input {
  border: none;
  background: transparent;
  width: 100%;
  outline: none;
  font-size: 14px;
  color: #333;
}

/* Desktop Search Bar (hidden on mobile) */
.search-bar {
  display: none;
  align-items: center;
  background: #fff;
  border-radius: 25px;
  padding: 8px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.search-icon {
  color: #666;
  margin-right: 10px;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  color: #333;
  background: transparent;
}

.search-input::placeholder {
  color: #999;
}

/* ===== NAVIGATION (MOBILE SIDEBAR) ===== */
.nav-menu {
  display: none;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

/* Mobile Sidebar Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.mobile-nav-sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 280px;
  height: 100%;
  background: linear-gradient(90deg, #4b8b6c, #c98a8a);
  z-index: 1001;
  transition: left 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

.mobile-nav-sidebar.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.sidebar-close {
  background: transparent;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu a,
.mobile-menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  cursor: pointer;
}

.mobile-submenu {
  list-style: none;
  padding-left: 15px;
  display: none;
}

.mobile-submenu li a {
  font-size: 14px;
  padding: 8px 0;
  color: #f1f1f1;
  display: block;
}

.mobile-parent.active>.mobile-submenu {
  display: block;
}

.mobile-parent.active>.mobile-menu-title span {
  transform: rotate(45deg);
  transition: 0.3s;
}

/* ===== MEGA MENU (Desktop Only) ===== */
.mega-parent {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 135px;
  background: #fff;
  display: none;
  gap: 50px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  border-top: 3px solid #00523b;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 99999;
}

.mega-menu-large {
  width: 698px;
  padding: 40px;
}

.mega-column {
  flex: 1;
  min-width: 0;
}

.mega-column h4 {
  color: #00523b;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  font-family: "Poppins";
}

.mega-column h4:first-child {
  margin-top: 0;
}

.mega-column h4:not(:first-child) {
  margin-top: 25px;
}

.mega-column a {
  display: block;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  padding: 6px 0;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
  text-transform: capitalize;
}

.mega-column a:hover {
  color: #00523b;
  padding-left: 8px;
  border-bottom-color: #e0e0e0;
}

.mega-parent>a:hover,
.mega-parent:hover>a {
  color: #fff !important;
}


/* ===== HERO SECTION (MOBILE) ===== */



/* ===== OUR BEST SELLERS (MOBILE) ===== */
.our-best-seller {
  padding: 60px 0;
  background-color: #ffffff;
}

.our-best-seller .container {
  width: 100%;
  margin: auto;
  display: block;
  text-align: center;
}

.our-best-seller h2 {
  text-align: center;
  font-size: 24px;

  color: var(--primary-color);
  margin-bottom: 30px;
  position: relative;

  letter-spacing: 1px;
  margin-top: 0px;
  margin-bottom: 60px;
}

.our-best-seller h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #e74c3c;
}

/* Products Grid (Mobile) */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  max-width: 1310px;
  margin: 0 auto;
  padding: 0;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  text-align: center;
  padding: 0;
  font-family: "Work Sans", sans-serif;
  border: 1px solid #f0f0f0;
  position: relative;
}

.product-card:hover {
  transform: translateY(-1px) scale(1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  /* border-color: #00523b; */
}

.product-card .add-to-cart-btn {
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
}

/* Product Image */
.product-image {
  position: relative;
  /* width: 100%; */
  height: 170px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin: 10px;
  border-radius: 10px;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(1.05);
}

.product-image .main-img {
  z-index: 1;
}

.product-image .hover-img {
  z-index: 2;
  opacity: 0;
}

.product-card.has-hover-img:hover .product-image .main-img {
  opacity: 0;
  transform: scale(1.1);
}

.product-card:hover .product-image .hover-img {
  opacity: 1;
  transform: scale(1.05);
}

/* Badges */
.product-image .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 25px;
  font-size: 10px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.8px;
  color: #fff;
  z-index: 10;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2); */
}

.product-image .badge.save {
  background-color: #28a745;
}

.product-image .badge.sold-out {
  background-color: #dc3545;
}

.product-image .badge.best-seller {
  background-color: #ffc107;
  color: #333;
}

.product-image .badge.on-sale {
  background-color: #007bff;
}

/* Product Info */
.product-info {
  padding: 25px 20px;
  text-align: center;
  background: #fff;
}

.product-title {
  font-size: 15px;

  color: var(--primary-color);
  margin: 0 0 12px 0;
  line-height: 23px;
  /* letter-spacing: -0.2px; */
}

/* Product Rating */
.product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  font-size: 14px;
  color: #ffc107;
}

.rating-count {
  font-size: 14px;
  color: var(--primary-color);
}

/* Product Price */
.product-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.current-price {
  font-size: 22px;
  font-weight: 800;
  color: #00523b;
  letter-spacing: -0.5px;
}

.mrp {
  font-size: 14px;
  color: var(--primary-color);
  text-decoration: line-through;
}

/* Product Variants */
.product-variants {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.variant-btn {
  background: transparent;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-color);
  cursor: pointer;
  /* transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); */
  text-align: center;
  width: 100%;
  max-width: 220px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
}

.variant-btn:hover {
  /* border-color: #00523b; */
  /* color: #00523b; */
  /* background: linear-gradient(135deg, #f0fff4 0%, #e6f7ee 100%); */
  /* transform: translateY(-2px); */
  /* box-shadow: 0 4px 12px rgba(0, 82, 59, 0.15); */
}

.variant-btn.active {
  background: #00523b;
  border-color: #00523b;
  color: #fff;
}

.variant-btn.active:hover {
  background: #003d2d;
  border-color: #003d2d;
}

/* Add to Cart Button */
.add-to-cart-btn {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #00523b 0%, #003d2d 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  
  box-shadow: 0 4px 15px rgba(0, 82, 59, 0.3);
  position: relative;
  overflow: hidden;
}

.add-to-cart-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #003d2d 0%, #002d20 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 82, 59, 0.4);
}

.add-to-cart-btn:active:not(:disabled) {
  transform: translateY(0);
}

.add-to-cart-btn:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  opacity: 0.7;
}

.add-to-cart-btn i {
  font-size: 16px;
}

#our-popular-products {
  margin-top: 50px;
}

/* ===== VIDEO SECTION ===== */
#video-section {
  background-color: #f8f9fa;
}

.video-section {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-section video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  filter: brightness(0.95);
  transition: filter 0.3s ease;
}

/* ===== PRODUCT COMBOS - REMOVED FOR CONSISTENCY ===== */
/* All product cards now use the same consistent styling */

/* ===== JOURNEY SECTION (MOBILE) ===== */
.journey-section,
#journey-section {
  /* background-color: #e9fff9; */
  padding: 10px 0px;
}

.banner-section {
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.banner-section img {
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(1.05);
}

.journey-content {
  /* background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%); */
  border: none;
  border-radius: 20px;
  padding: 50px 0px;
  margin: 50px 0px;
  /* box-shadow: 0 8px 30px rgba(0, 82, 59, 0.08); */
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* .journey-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00523b 0%, #28a745 50%, #00523b 100%);
  border-radius: 20px 20px 0 0;
} */

.journey-content h2 {
  font-size: 28px;

  line-height: 1.2;
  margin: 0 0 20px 0;
  color: var(--primary-color);
  text-align: center;
  position: relative;
}

.journey-content h6 {
  font-size: 18px;
  color: var(--primary-color);
  line-height: 27px;
  margin: 10px 0px;
}

.journey-content p {
  font-size: 17px;

  line-height: 1.7;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
}

.button-read-more {
  background: var(--green-color);
  color: #fff;
  padding: 12px 32px;
  border-radius: 12px;
  display: inline-block;
  margin: 20px auto 0;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: capitalize;
  letter-spacing: 1px;
  /* box-shadow: 0 4px 15px rgba(0, 82, 59, 0.3); */
  border: 2px solid transparent;
}

.button-read-more:hover {
  background: var(--green-color-dark);
  color: #fff;
  transform: translateY(-3px);
  /* box-shadow: 0 8px 25px rgba(0, 82, 59, 0.4); */
  border-color: rgba(255, 255, 255, 0.2);
}

/* Read More Toggle */
.more-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.more-text.active {
  max-height: 2080px;
  margin-top: 10px;
}

.read-toggle-btn {

  background: var(--green-color);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
  cursor: pointer;
}

/* ===== BLOG SECTION (MOBILE) ===== */
.blog {
  padding: 60px 0;
  background-color: #ffffff;
}

.blog .container {
  width: 100%;
  margin: auto;
  display: block;
  text-align: center;
}

.blog-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  position: relative;
  
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 60px;
}

.blog-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #e74c3c;
}

/* Blog Grid (Mobile) */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: 1px solid #f0f0f0;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #00523b;
}

/* Blog Image */
.blog-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(1.05);
}

.blog-card:hover .blog-image img {
  transform: scale(1.08) rotate(1deg);
  filter: brightness(1.1);
}

/* Blog Tag */
.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--green-color);
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.8px;
  z-index: 10;
  /* box-shadow: 0 4px 12px rgba(0, 82, 59, 0.3); */
  /* backdrop-filter: blur(10px); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
}

/* Blog Content */
.blog-content {
  padding: 25px 20px;
  text-align: left;
  background: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 13px;
  color: var(--green-color);
  margin-bottom: 20px;

  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.blog-heading {
  font-size: 20px;

  color: var(--primary-color);
  margin: 0 0 15px 0;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.blog-description {
  font-size: 15px;
  color: var(--primary-color);
  line-height: 1.6;
  margin: 0 0 15px 0;
  flex-grow: 1;
}

/* Blog Button */
.blog-button-container {
  text-align: center;
  margin-top: 30px;
}

.all-blog-btn {
  background: var(--green-color);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* box-shadow: 0 4px 15px rgba(0, 82, 59, 0.3); */
}

.all-blog-btn:hover {
  background: var(--green-color-dark);
  transform: translateY(-3px);
  /* box-shadow: 0 8px 25px rgba(0, 82, 59, 0.4); */
}

/* ===== SWIPER/SLIDER (MOBILE) ===== */
.swiper {
  padding: 20px 0 40px;
}

.swiper-slide {
  height: auto;
}

/* ===== SLIDER SECTION - NOW USING CONTAINER CLASS ===== */
/* Slider now uses standard container for consistency */

.slider-sec {
  padding: 60px 0;
  background-color: #fff;
}

.slider-sec .heading {
  text-align: center;
  margin-bottom: 40px;
}

.slider-sec .heading h2 {
  font-size: 28px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.slider-sec .heading h2::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 0px;
  background-color: #28a745;
  border-radius: 2px;
}

.myImageSwiper {
  width: 100%;
}

.myImageSwiper .swiper-slide {
  transition: 0.3s;
}

.myImageSwiper .swiper-slide img {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #ddd;
}

.swiper-slide-active {
  transform: scale(1.05);
}

.myImageSwiper .swiper-pagination {
  position: relative;
  margin-top: 20px;
  bottom: 0 !important;
}

.myProductSwiper .swiper-button-next,
.myProductSwiper .swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00523b 0%, #003d2d 100%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 82, 59, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.myProductSwiper .swiper-button-next:hover,
.myProductSwiper .swiper-button-prev:hover {
  background: linear-gradient(135deg, #003d2d 0%, #002d20 100%);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 82, 59, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.swiper-button-next::after {
  content: "\203A";
  font-size: 18px !important;
  font-weight: bold;
}

.swiper-button-prev::after {
  content: "\2039";
  font-size: 18px !important;
  font-weight: bold;
}

/* ===== HEADING ===== */
.heading {
  text-align: center;
  margin-bottom: 20px;
}

.heading h2 {
  font-size: 24px;

  margin-top: 0px;
  margin-bottom: 60px;
}

/* ===== SOCIAL ICONS ===== */
.socil-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socil-icons img {
  width: 30px;
  height: 30px;
}

/* ===== FAQ SECTION (MOBILE) ===== */
.faq {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}



.hero-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.heroSwiper {
  width: 100%;
}

.heroSwiper .swiper-slide {
  width: 100%;
}

.heroSwiper .swiper-slide img {
  width: 100%;

  display: block;
}

.faq .container {
  width: 100%;
  margin: auto;
  max-width: 800px;
}

.faq-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 40px;
  position: relative;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.faq-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #e74c3c;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #00523b;
}

.faq-question {
  background: var(--green-color);
  color: #fff;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  user-select: none;
  position: relative;
}

.faq-question:hover {
  background: var(--green-color-dark);
}

.faq-question i {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-answer {
  padding: 25px 20px;
  max-height: 500px;
  border-top-color: #e9f7ee;
}

.faq-answer p {
  color: var(--primary-color);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

/* ===== FOOTER (MOBILE) ===== */
.footer {
  background-color: #00523b;
  color: #fff;
  padding: 40px 0 20px;
}

.footer .container {
  width: 100%;
  margin: auto;
  max-width: 1200px;
  display: block;
}

.footer-content {
  display: grid;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.footer-column {
  flex: 0 0 100%;
  min-width: auto;
  max-width: none;
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 16px;

  margin-bottom: 15px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
  line-height: 1.4;
}

.footer-links a:hover {
  opacity: 0.8;
}

/* WhatsApp Section */
.whatsapp-section {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 15px;
}

.whatsapp-text {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #fff;
}

.whatsapp-input-group {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 350px;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.whatsapp-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  outline: none;
  font-size: 14px;
  color: #333;
  background: transparent;
}

.whatsapp-input::placeholder {
  color: #999;
}

.whatsapp-btn {
  background-color: #25d366;
  color: #fff;
  border: none;
  padding: 12px 15px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
}

/* Payment Section */
.payment-section {
  text-align: center;
  padding: 20px 0 0;
}

.payment-text {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #fff;
}

.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-icon {
  height: 28px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.payment-icon:hover {
  opacity: 1;
}

/* Search Box */
.search-box input {
  padding: 12px 18px;
  background-color: #d8d8d867;
  border: none;
  border-radius: 42px;
}

.search-box input::placeholder {
  color: #fff;
  font-size: 14px;
}

svg.icon.icon-search {
  color: #fff;
}


.search-btn {
  background: transparent !important;
  border: none !important;
  padding: 0;
  cursor: pointer;
  color: inherit;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
  outline: none;
}

.search-btn:hover {
  opacity: 0.7;
}

/* Typing Animation */
@keyframes typing {
  0% {
    content: "S";
  }

  5% {
    content: "Se";
  }

  10% {
    content: "Sea";
  }

  15% {
    content: "Sear";
  }

  20% {
    content: "Searc";
  }

  25% {
    content: "Search";
  }

  30% {
    content: "Search ";
  }

  35% {
    content: "Search F";
  }

  40% {
    content: "Search Fo";
  }

  45% {
    content: "Search For";
  }

  50% {
    content: "Search For ";
  }

  55% {
    content: "Search For W";
  }

  60% {
    content: "Search For Wa";
  }

  65% {
    content: "Search For Wal";
  }

  70% {
    content: "Search For Waln";
  }

  75% {
    content: "Search For Walnu";
  }

  80% {
    content: "Search For Walnut";
  }

  85% {
    content: "Search For Walnut";
  }

  90% {
    content: "Search For Walnut";
  }

  95% {
    content: "Search For Walnut";
  }

  100% {
    content: "Search For Walnut";
  }
}

/* ========================================
   SHOP PAGE STYLES (MOBILE)
   ======================================== */
.shop-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.filter-sidebar {
  width: 100%;
}

.filter-sidebar.active {
  right: 0;
}

.filter-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.filter-overlay.active {
  display: block;
}

.filter-header {
  font-weight: 600;
  margin-bottom: 20px;
}

.filter-box {
  margin-bottom: 25px;
}

.filter-box h4 {
  margin-bottom: 15px;
}

.price-bar {
  position: relative;
  height: 30px;
  margin-bottom: 15px;
}

.price-line {
  height: 6px;
  background: #ddd;
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  border-radius: 3px;
  cursor: pointer;
}

.dot {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #00523b 0%, #003d2d 100%);
  border: 3px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  cursor: grab;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 82, 59, 0.3);
  z-index: 2;
}

.dot:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0, 82, 59, 0.4);
}

.dot:active,
.dot.dragging {
  cursor: grabbing;
  transform: scale(1.3);
  box-shadow: 0 6px 16px rgba(0, 82, 59, 0.5);
}

.dot.left {
  left: 0;
}

.dot.right {
  right: 0;
}

.price-inputs {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.price-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  min-width: 80px;
  text-align: center;
  transition: all 0.2s ease;
}

.price-box:hover {
  border-color: #00523b;
  background: linear-gradient(135deg, #f0fff4 0%, #e6f7ee 100%);
}

.price-inputs span {
  color: #666;
  font-weight: 500;
  font-size: 14px;
}

.filter-box label {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
}

.filter-box label:hover {
  background: #f8f9fa;
  border-color: #e9ecef;
}

.filter-box label:hover span {
  color: #00523b;
}

.filter-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  accent-color: #00523b;
  cursor: pointer;
}

.filter-box input[type="checkbox"]:checked+span {
  color: #00523b;
  font-weight: 600;
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
}

.filter-header svg {
  color: #00523b;
}

.filter-close-btn {
  display: none;
}

/* Mobile styles */
@media (max-width: 600px) {
  .filter-close-btn {
    display: flex;
  }

  .sort-wrapper {
    display: none;
  }

  .filter-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }
}

.filter-actions {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.reset-filters-btn {
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #e9ecef;
  border-radius: 8px;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.reset-filters-btn:hover {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  border-color: #dc3545;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.reset-filters-btn i {
  transition: transform 0.3s ease;
}

.reset-filters-btn:hover i {
  transform: rotate(180deg);
}

.product-area {
  flex: 1;
}

.sort-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 10px;
  align-items: center;
}

.mobile-filter-toggle {
  display: none;
  background: linear-gradient(135deg, #00523b 0%, #003d2d 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 82, 59, 0.3);
}

.mobile-filter-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 82, 59, 0.4);
}

.mobile-filter-toggle i {
  font-size: 16px;
}


.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  position: relative;
}

.sort-wrapper label {
  white-space: nowrap;
  flex-shrink: 0;
}



.sort-wrapper::after {
  content: "▼";
  position: absolute;
  right: 13px;
  pointer-events: none;
  font-size: 10px;
  border: none;
}

.sort-dropdown {
  padding: 10px 5px 10px 5px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
  cursor: pointer;
  background: #fff;
  appearance: none;
  position: relative;
  margin-left: 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Shop page specific overrides removed - using main product card styles */

.price-box {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 6px;
}

.filter-sidebar {
  padding: 30px;
}

.filter-close-btn {
  display: flex;
  padding: 10px;
  border-radius: 6px;
  border: navajowhite;
  background: #00523a;
  color: #fff;
}

/* ========================================
   TABLET STYLES (768px and up)
   ======================================== */
@media (min-width: 768px) {

  /* Hero Section */


  /* Our Best Sellers */
  .our-best-seller h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
  }

  .product-image {
    height: 170px;
  }

  .product-info {
    padding: 20px;
  }

  /* .product-title {
    font-size: 15px;
  } */

  .current-price {
    font-size: 20px;
  }

  /* Journey Section */
  .journey-content {
    padding: 40px 0px;
    margin: 60px 40px;
  }

  .journey-content h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .journey-content h6 {
    font-size: 22px;
    line-height: 30px;
  }

  .journey-content p {
    font-size: 17px;
    line-height: 26px;
  }

  .button-read-more {
    padding: 18px 35px;
    font-size: 15px;
  }

  .more-text.active {
    max-height: 933px;
  }

  /* Blog Section */
  .blog {
    padding: 50px 0;
  }

  .blog-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 20px;
  }

  .blog-image {
    height: 180px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-heading {
    font-size: 20px;
  }

  .blog-description {
    font-size: 15px;
    line-height: 22px;
  }

  .all-blog-btn {
    padding: 15px 35px;
    font-size: 14px;
  }

  /* Slider */
  .slider-sec {
    padding: 50px 0;
  }

  /* Slider Section - now using container */
  .slider-sec {
    padding: 50px 0;
  }

  .myImageSwiper .swiper-slide img {
    height: 250px;
  }

  .heading {
    margin-bottom: 25px;
  }

  .heading h2 {
    font-size: 28px;
  }

  /* FAQ */
  .faq {
    padding: 40px;
  }

  .faq .container {
    width: 100%;
  }

  .faq-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 20px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 20px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  /* Footer */
  .footer {
    padding: 50px 0 30px;
  }

  .footer-content {
    margin-bottom: 40px;
    gap: 40px;
  }

  .footer-column {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 180px;
  }

  .footer-heading {
    font-size: 18px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .whatsapp-section {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .whatsapp-text {
    font-size: 16px;
  }

  .payment-text {
    font-size: 14px;
  }

  .payment-icon {
    height: 50px;
  }

  /* Shop Page */
  .shop-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   DESKTOP STYLES (1200px and up)
   ======================================== */
@media (min-width: 1200px) {
  .hero-section h1 {
    font-size: 78px;
    text-transform: capitalize;
    width: 60%;
  }



  .filter-close-btn {
    display: none;
  }

  .filter-sidebar {
    padding: 30px 0px;
  }

  .sort-top {
    justify-content: end;
  }

  /* Container */
  .container {
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Header */
  .site-header {
    background: linear-gradient(90deg, #212123, #6ba471);
    padding: 15px 20px;
    position: relative !important;
    z-index: 2000 !important;
    overflow: visible !important;
    border-bottom: none;
  }

  .site-header .container {
    max-width: 100%;
    box-sizing: border-box;
  }

  .desktop-header {
    display: block !important;
  }

  .mobile-header {
    display: none !important;
  }

  /* Logo */
  .logo {
    display: flex;
  }

  .logo img {
    width: 135px;
  }

  /* Header Left */
  .header-left {
    display: flex;
  }

  .hamburger-menu {
    display: none;
  }

  /* Header Main Row (Desktop) */
  .header-main-row {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: none;
    padding: 0;
    min-height: auto;
  }

  /* Header Right */
  .header-right {
    display: flex;
  }

  .header-icons {
    display: flex !important;
    gap: 20px;
    align-items: center;
  }

  .header-icon-link {
    color: #333 !important;
  }

  /* Search */
  .search-section {
    padding: 10px 0;
  }

  .mobile-search-row {
    display: none;
  }

  .search-bar {
    display: flex;
  }

  /* Navigation */
  .nav-menu {
    display: block !important;
  }

  .nav-menu ul {
    display: flex;
    gap: 28px;
  }

  /* Mega Menu */
  .mega-menu {
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
  }

  .mega-parent:hover .mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    transform: translateY(5px) !important;
  }

  /* Mobile Sidebar (Hidden on Desktop) */
  .mobile-nav-sidebar,
  .mobile-nav-overlay {
    display: none !important;
  }



  /* Our Best Sellers */
  .our-best-seller {
    padding: 60px 0;
  }

  .our-best-seller h2 {
    font-size: 32px;
    margin-bottom: 60px;
    margin-top: 0px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .product-image {
    height: 280px;
  }

  /* Journey Section */
  /* .journey-content {
    padding: 60px 0px;
    margin: 60px 0px;
  } */

  .journey-content h2 {
    font-size: 32px;

    line-height: 0px;
    margin-bottom: 60px;
  }

  .journey-content h6 {
    font-size: 20px;

    line-height: 0px;
  }

  .journey-content p {
    font-size: 18px;

    line-height: 28px;
  }

  .button-read-more {
    padding: 12px 40px;
    font-size: 16px;
  }

  /* Blog */
  .blog {
    padding: 60px 0;
  }

  .blog-title {
    font-size: 32px;
    margin-bottom: 60px;
    margin-top: 0px;
  }

  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 25px;
  }

  .blog-heading {
    font-size: 25px;
  }

  .blog-description {
    font-size: 16px;
    line-height: 22px;
  }

  /* Slider */
  .slider-sec {
    padding: 60px 0;
  }

  /* Slider Section - now using container */
  .slider-sec {
    padding: 60px 0;
  }

  .myImageSwiper .swiper-slide img {
    height: 300px;
  }

  .heading {
    margin-bottom: 30px;
  }

  .heading h2 {
    font-size: 32px;
    margin: 0px 0px 50px;
  }

  /* Swiper Navigation - show on all screen sizes */
  .myProductSwiper .swiper-button-next,
  .myProductSwiper .swiper-button-prev {
    display: flex;
    width: 40px;
    height: 40px;
  }

  /* FAQ */
  .faq {
    padding: 60px 0;
  }

  .faq .container {
    width: 100%;
  }

  .faq-title {
    font-size: 32px;
    margin-bottom: 60px;
    margin-top: 0px;
  }

  /* Footer */
  .footer {
    padding: 50px 0 30px;
  }

  .footer .container {
    display: block;
  }

  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 40px;
  }

  /* Shop Page */
  .shop-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 40px;
  }

  .filter-sidebar {
    width: 260px;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

/* ========================================
   ADDITIONAL BREAKPOINTS
   ======================================== */

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .our-best-seller h2 {
    font-size: 22px;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .product-info {
    padding: 15px;
  }

  .product-title {
    font-size: 15px;
  }

  .current-price {
    font-size: 17px;
  }

  .blog-title {
    font-size: 22px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .blog-content {
    padding: 15px;
  }

  .blog-heading {
    font-size: 17px;
  }

  .blog-description {
    font-size: 13px;
    line-height: 20px;
  }

  .all-blog-btn {
    padding: 12px 25px;
    font-size: 13px;
  }

  .journey-content h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .journey-content h6 {
    font-size: 16px;
    line-height: 24px;
  }

  .mobile-filter-toggle {
    display: flex;
  }

  .filter-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1340px;
  }
}

/* product details css */
.variation-selector {
  margin-bottom: 20px;
}

.variation-selector label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.variation-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stock-select.variant-btn.active {
  background-color: var(--green-color) !important;
  color: white !important;
  border-color: var(--green-color) !important;
}

.stock-select.variant-btn {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s;
}

/* Product Detail Section - Mobile First */
.product-detail-section {
  padding: 20px 0;
}

.product-detail-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Product Image Section */
.product-image-section {
  width: 100%;
}

.main-product-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-product-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: opacity 0.2s ease-in-out;
}

/* Product Gallery */
.product-gallery {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  overflow-x: auto;
  padding: 5px 0;
}

.gallery-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: #00523b;
  transform: scale(1.05);
}

.gallery-item.active {
  border-color: #00523b;
  box-shadow: 0 2px 8px rgba(0, 82, 59, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product Info Section */
.product-info-section {
  width: 100%;
}

.product-details-product-title {
  font-size: 24px;

  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Price Section */
.product-price-section {
  margin-bottom: 20px;
}

.price-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.current-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--green-color);
}

.original-price {
  font-size: 18px;
  color: var(--primary-color);
  text-decoration: line-through;
}

.discount-badge {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Rating Section */
.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  /* margin-bottom: 25px; */
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #f39c12;
  font-size: 14px;
}

.rating-text {
  font-size: 14px;
  color: #7f8c8d;
}

/* Quantity Selector */
.quantity-selector {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.quantity-selector label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid #ecf0f1;
  border-radius: 8px;
  width: fit-content;
}

.quantity-btn {
  background: #f8f9fa;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background: #e74c3c;
  color: white;
}

.quantity-btn.minus {
  border-radius: 6px 0 0 6px;
}

.quantity-btn.plus {
  border-radius: 0 6px 6px 0;
}

.quantity-input {
  border: none;
  width: 60px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
}

/* Product Actions */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.add-to-cart-btn,
.buy-now-btn {
  padding: 10px 5px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.add-to-cart-btn {
  background: var(--green-color);
  color: white;
}

.add-to-cart-btn:hover {
  background: var(--green-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

.buy-now-btn {
  background: #e0b90b;
  color: white;
}

.buy-now-btn:hover {
  background: #ad9217;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

/* Trust Factors */
.trust-factors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item i {
  color: var(--green-color);
  font-size: 16px;
}

.trust-item span {
  font-size: 13px;
  color: #2c3e50;
  font-weight: 500;
}

/* Product Accordion */
.product-accordion {
  margin-bottom: 30px;
}

.accordion-item {
  border: 1px solid #ecf0f1;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-header {
  padding: 15px 20px;
  background: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: #ecf0f1;
}

.accordion-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.accordion-header i {
  color: #7f8c8d;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  opacity: 0;
}

.accordion-item.active .accordion-content {
  padding: 20px;
  max-height: 500px;
  opacity: 1;
}

.accordion-content p {
  color: #5d6d7e;
  line-height: 1.6;
  margin: 0;
}

/* Slider Section */
.slider-sec {
  padding: 60px 0;
  background: #f8f9fa;
}

.slider-sec .heading {
  text-align: center;
  margin-bottom: 40px;
}

.slider-sec .heading h2 {
  font-size: 32px;

  color: var(--primary-color);
  margin: 0;
}

/* Swiper Container */
.myProductSwiper {
  padding: 0 20px;
  overflow: hidden;
}

.swiper-slide {
  height: auto;
}

/* Product Card Styles for Slider */
.slider-sec .product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.slider-sec .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.slider-sec .product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.slider-sec .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.slider-sec .product-image .main-img {
  position: relative;
  z-index: 1;
}

.slider-sec .product-image .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slider-sec .product-card:hover .hover-img {
  opacity: 1;
}

.slider-sec .product-card:hover .main-img {
  opacity: 0;
}

.slider-sec .badge {
  position: absolute;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  z-index: 2;
}

.slider-sec .badge.save {
  background: #27ae60;
}

.slider-sec .badge.sold-out {
  background: #e74c3c;
}

.slider-sec .badge.best-seller {
  background: #f39c12;
}

.slider-sec .badge.on-sale {
  background: #e67e22;
}

.slider-sec .product-info {
  padding: 20px;
}

.slider-sec .product-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.3;
}

.slider-sec .product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.slider-sec .stars {
  display: flex;
  gap: 2px;
}

.slider-sec .stars i {
  font-size: 14px;
  color: #f39c12;
}

.slider-sec .rating-count {
  font-size: 14px;
  color: #7f8c8d;
}

.slider-sec .product-variants {
  margin-bottom: 15px;
}

.slider-sec .variant-btn {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  color: #495057;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-sec .variant-btn:hover {
  background: #e9ecef;
  border-color: #dee2e6;
}

.slider-sec .product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.slider-sec .current-price {
  font-size: 20px;
  font-weight: 700;
  color: #00523b;
}

.slider-sec .mrp {
  font-size: 14px;
  color: #95a5a6;
  text-decoration: line-through;
}

.slider-sec .add-to-cart-btn {
  width: 100%;
  background: var(--green-color);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.slider-sec .add-to-cart-btn:hover:not(:disabled) {
  background: var(--green-color-dark);
  transform: translateY(-1px);
}

.slider-sec .add-to-cart-btn:disabled {
  background: var(--green-color-dark);
  cursor: not-allowed;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #00523b;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: white;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .slider-sec {
    padding: 40px 0;
  }

  .slider-sec .heading h2 {
    font-size: 28px;
  }

  .myProductSwiper {
    padding: 0 10px;
  }

  .slider-sec .product-image {
    height: 200px;
  }

  .slider-sec .product-info {
    padding: 15px;
  }

  .slider-sec .product-title {
    font-size: 16px;
  }

  .slider-sec .current-price {
    font-size: 18px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  padding-top: 0px;
  background: #f8f9fa;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ff4141;
}

.faq-content {
  max-width: 400px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.faq-header {
  padding: 20px 25px;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-header:hover {
  background: #f8f9fa;
}

.faq-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.faq-header i {
  color: #7f8c8d;
  transition: transform 0.3s ease;
  font-size: 14px;
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-content-inner {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-content-inner {
  padding: 0 25px 20px 25px;
  max-height: 200px;
  opacity: 1;
}

.faq-content-inner p {
  color: #5d6d7e;
  line-height: 1.6;
  margin: 0;
  font-size: 16px;
}

/* Mobile Responsive for FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .faq-header {
    padding: 15px 20px;
  }

  .faq-header h3 {
    font-size: 16px;
  }

  .faq-content-inner p {
    font-size: 14px;
  }

  .faq-item.active .faq-content-inner {
    padding: 0 20px 15px 20px;
  }
}

@media only screen and (min-width: 1200px) {
  .faq-content {
    max-width: 800px;
  }
}

/* Review Section */
.review-section {
  padding: 60px 0;
  padding-top: 0px;
  background: #f8f9fa;
}

.review-content {
  margin: 0 auto;
}

.review-list-header .sort-dropdown {
  border: none;
  background-color: transparent;
}

.review-item {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.review-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e9ecef;
}

.reviewer-details {
  flex: 1;
}

.reviewer-name {
  font-size: 18px;

  color: var(--primary-color);
  margin: 0 0 5px 0;
}

.review-rating {
  margin-top: 5px;
}

.review-rating .stars {
  display: flex;
  gap: 2px;
}

.review-rating .stars i {
  font-size: 14px;
  color: #f39c12;
}

.review-date {
  font-size: 14px;
  color: #95a5a6;
  font-weight: 500;
}

.review-text {
  margin: 0;
}

.review-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-color);
  margin: 0;
}

/* Review Summary Section */
.review-summary {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.rating-overview {
  text-align: center;
  margin-bottom: 30px;
}

.rating-score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.score-number {
  font-size: 48px;
  font-weight: 700;
  color: #2c3e50;
}

.score-text {
  font-size: 18px;
  color: #7f8c8d;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}

.rating-stars i {
  font-size: 20px;
  color: #f39c12;
}

.total-reviews {
  font-size: 16px;
  color: #7f8c8d;
}

.rating-breakdown {
  max-width: 300px;
  margin: 0 auto;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.bar-label {
  font-size: 14px;
  color: #5d6d7e;
  min-width: 50px;
}

.bar-container {
  flex: 1;
  height: 8px;
  background: #ecf0f1;
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #f39c12;
  transition: width 0.3s ease;
}

.bar-count {
  font-size: 14px;
  color: #5d6d7e;
  min-width: 20px;
  text-align: right;
}

.write-review-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 20px;
}

.write-review-btn {
  background: var(--green-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-section .container {
  display: block;
}

.write-review-btn:hover {
  background: var(--green-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.review-list-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.sort-dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-dropdown label {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
}

.sort-dropdown select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  color: var(--primary-color);
}

.verified-badge {
  background: var(--green-color);
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 500;
  margin-left: 8px;
}

/* Review Modal */
.review-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #ecf0f1;
}

.modal-header h3 {
  margin: 0;
  font-size: 20px;
  color: #2c3e50;
}

.close-modal {
  font-size: 28px;
  font-weight: bold;
  color: #95a5a6;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #2c3e50;
}

.modal-body {
  padding: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 14px;
}

.star-rating {
  display: flex;
  gap: 8px;
}

.star-rating i {
  font-size: 24px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s ease;
}

.star-rating i:hover,
.star-rating i.active {
  color: #f39c12;
}

.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
}

.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-review-btn {
  background: var(--green-color);
  ;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-review-btn:hover {
  background: var(--green-color-dark);
  ;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive for Review Section */
@media (max-width: 768px) {
  .review-section {
    padding: 60px 0;
  }

  .review-item {
    padding: 20px;
    margin-bottom: 15px;
  }

  .review-summary {
    padding: 20px;
    margin-bottom: 20px;
  }

  .score-number {
    font-size: 36px;
  }

  .score-text {
    font-size: 16px;
  }

  .rating-breakdown {
    max-width: 100%;
  }

  .modal-content {
    width: 95%;
    margin: 5% auto;
  }

  .modal-header,
  .modal-body {
    padding: 20px;
  }

  .review-list-header {
    justify-content: center;
  }

  .review-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .reviewer-info {
    width: 100%;
  }

  .reviewer-name {
    font-size: 16px;
  }

  .review-text p {
    font-size: 15px;
  }
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #ecf0f1;
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: #2c3e50;
}

.info-value {
  color: #5d6d7e;
}

.product-details-rating {
  justify-content: left;
}

/* Tablet Styles */
@media (min-width: 768px) {
  .product-detail-section {
    padding: 40px 0;
  }

  .product-detail-wrapper {
    flex-direction: row;
    gap: 50px;
    align-items: flex-start;
  }

  .product-image-section {
    flex: 1;
    max-width: 45%;
  }

  .product-info-section {
    flex: 1;
    max-width: 55%;
  }

  .product-details-product-title {
    font-size: 28px;
  }

  .trust-factors {
    grid-template-columns: repeat(4, 1fr);
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .product-detail-section {
    padding: 60px 0;
  }

  .product-details-product-title {
    font-size: 32px;
  }

  .product-actions {
    flex-direction: row;
    justify-content: space-between;
  }

  .add-to-cart-btn,
  .buy-now-btn {
    flex: 1;
    margin: 0px;
  }
}

/* login */


/* ===== MOBILE FIRST ===== */
.login-wrapper {
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.login-box {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.login-box h1 {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #222;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input {
  width: 100%;
  padding: 20px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.form-group input:focus {
  border-color: #4a67a1;
}

.forgot {
  text-align: left;
  margin-bottom: 20px;
}

.forgot a {
  font-size: 15px;
  color: #222;
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 20px 14px;
  background: var(--green-color);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
}

.login-btn:hover {
  background: var(--green-color-dark);
}

.signup a {
  font-size: 16px;
  color: #222;
  text-decoration: underline;
}

/* ===== LAPTOP VIEW ===== */
@media (min-width: 1200px) {

  .login-box {
    max-width: 450px;
  }

  .login-box h1 {
    font-size: 35px;
  }

  .form-group input {
    font-size: 15px;
  }

  .login-btn {
    font-size: 22px;
  }
}

/* sign up */


/* Mobile First */
.signup-wrapper {
  min-height: 500px;
  background: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.signup-box {
  width: 100%;
  max-width: 350px;
  text-align: center;
}

.signup-box h2 {
  margin-bottom: 25px;
  font-size: 30px;

  color: #222;
}

.signup-box input {
  width: 100%;
  padding: 20px 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.signup-box input:focus {
  border-color: #4a67a1;
}

.signup-box button {
  width: 100%;
  padding: 20px 14px;
  border: none;
  border-radius: 8px;
  background-color: var(--green-color);
  color: #fff;
  font-size: 22px;
  font-family: "Poppins";
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.signup-box button:hover {
  background-color: var(--green-color-dark);
}

.login-link {
  margin-top: 20px;
}

.login-link a {
  color: #000;
  font-size: 16px;
  text-decoration: underline;
}

/* Laptop View */
@media (min-width: 1200px) {

  .signup-box {
    max-width: 420px;
  }

  .signup-box h2 {
    font-size: 35px;
  }

  .signup-box input {
    font-size: 15px;
  }

  .signup-box button {
    font-size: 22px;
  }
}

/* cart */


.cart-section {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 60px;
}

.breadcrumb {
  text-align: center;
  font-size: 14px;

  color: #4b5b4e;
}

.page-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.cart-wrapper {
  display: flex;
  flex-direction: column;
  /* Mobile First */
  gap: 25px;
}

/* LEFT */

.cart-left {
  background: #f7faf7;
  padding: 20px;
  border-radius: 12px;
}

.cart-head {
  display: none;
}

.cart-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product {
  display: flex;
  gap: 15px;
  align-items: center;
}

.product img {
  width: 60px;
}

.product h4 {
  font-size: 15px;
  margin-bottom: 5px;
}

.product p {
  font-weight: 500;
}

.qty-box {
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e8e0;
  border-radius: 50px;
  padding: 20px;
  padding-bottom: 22px;
  width: 154px;
  height: 0px;
  background: #fdfdfd;
}

.qty-box form {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.qty-box button {
  background: none !important;
  border: none !important;
  font-size: 22px;
  font-weight: 300;
  color: #4c4c4c;
  cursor: pointer;
  transition: opacity 0.2s;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-box button:hover {
  opacity: 0.5;
}

.qty-box input {
  width: 30px !important;
  border: none !important;
  outline: none !important;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  -moz-appearance: textfield;
}

.qty-box input::-webkit-outer-spin-button,
.qty-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.subtotal {
  font-weight: 600;
}

/* RIGHT */

.summary-card {
  background: #f7faf7;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #cfd8cf;
}

.coupon-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

#couponIcon {
  font-size: 14px;
  color: #666;
  transition: transform 0.3s ease;
}

.coupon.active #couponIcon {
  transform: rotate(180deg);
}

.coupon-input {
  display: flex;
  gap: 10px;
}

.coupon-input input {
  flex: 1;
  padding: 10px;
  border: 1px solid #cfd8cf;
  border-radius: 6px;
}

.coupon-input button {
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  background: var(--green-color);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.coupon-input button:hover {
  background: var(--green-color-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.line {
  height: 1px;
  background: #d6e0d6;
  margin: 20px 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.green {
  color: #00a651;
  font-weight: 600;
}

.shipping h4 {
  margin-bottom: 10px;
}

.shipping label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.shipping label input {
  width: 6%;
}

.shipping input {
  margin-right: 8px;
}

.ship-to {
  margin-top: 10px;
  font-size: 14px;
}

.change {
  font-size: 13px;
  color: #1c2b1f;
  text-decoration: none;
}

.total {
  font-size: 18px;
  font-weight: 600;
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 40px;
  background: var(--green-color);
  color: white;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
}

/* ========================
   Desktop
======================== */

@media(min-width:1200px) {
  /* .cart-section{
    padding: 70px 20px;
  } */

  .cart-wrapper {
    flex-direction: row;
  }

  .cart-left {
    flex: 2;
  }

  .cart-right {
    flex: 1;
  }

  .cart-head {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .cart-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .product {
    flex: 2;
  }

  .qty-box {
    flex: 1;
  }

  .subtotal {
    flex: 1;
    text-align: right;
  }

}

.coupon-body {
  overflow: hidden;
  max-height: 0;
  transition: all 0.4s ease;
}

.coupon-body.active {
  max-height: 200px;
  margin-top: 15px;
}

.coupon-head {
  cursor: pointer;
}

.quantity-box {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.quantity-text {
  display: flex;
  gap: 59px;
}

.cart-banner {
  text-align: center;
  width: 100%;
  height: 240px;
  padding-top: 20px;

}

.main-cart-banner {
  height: 110px;
  background-color: #fff;
}

/* close */
.cart-container {
  position: relative;
}

.cart-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
  font-weight: 600;
}

/* EMPTY DESIGN */

.empty-cart {
  display: none;
  background: #f7faf7;
  padding: 80px 20px;
  border-radius: 12px;
  text-align: center;
}

.empty-content h2 {
  margin: 20px 0;
  font-size: 22px;
  color: #1c2b1f;
}

.empty-content button {
  padding: 12px 30px;
  border-radius: 30px;
  border: 1px solid #1c2b1f;
  background: white;
  cursor: pointer;
}

.empty-icon {
  font-size: 60px;
  color: #1c3f2e;
}

/* Checkout */
.checkbox-group input {
  width: 3%;
}

.checkout-section {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 60px;
}

.checkout-wrapper {
  display: flex;
  flex-direction: column;
  /* MOBILE FIRST */
  gap: 30px;
}

/* LEFT SIDE */

.checkout-left {
  background: #f7faf7;
  padding: 25px;
  border-radius: 12px;
}

.checkout-left h2 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.checkout-section input:not([type="checkbox"]):not([type="radio"]),
.checkout-section select,
.checkout-section textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #cfd8cf;
  border-radius: 8px;
  background: #f8faf8;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
}

.checkout-section input:focus,
.checkout-section select:focus,
.checkout-section textarea:focus {
  border-color: var(--green-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 82, 59, 0.1);
}

textarea {
  height: 90px;
  resize: none;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

/* RIGHT SIDE */

.summary-card {
  background: #f7faf7;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #cfd8cf;
}

.summary-card h3 {
  margin-bottom: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.green {
  color: var(--green-color);
  font-weight: 600;
  margin-left: 158px;
}

.divider {
  height: 1px;
  background: #d6e0d6;
  margin: 20px 0;
}

.radio-group label {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.radio-group label input {
  margin-right: 12px;
  width: 18px !important;
  height: 18px !important;
  accent-color: var(--green-color);
  cursor: pointer;
}

.radio-group input {
  margin-right: 8px;
}

.payment-text {
  font-size: 14px;
  margin-bottom: 20px;
  margin-left: 30px;
  color: #666;
  line-height: 1.5;
}

.total {
  font-size: 18px;
  font-weight: 600;
}

.price-range-wrapper {
  padding: 10px 5px 30px;
}

#price-slider {
  height: 4px;
  background: #e9ecef;
  border: none;
  border-radius: 4px;
  margin-bottom: 25px;
}

#price-slider .noUi-connect {
  background: var(--green-color);
}

#price-slider .noUi-handle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-color);
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  right: -9px;
  top: -8px;
}

#price-slider .noUi-handle::before,
#price-slider .noUi-handle::after {
  display: none;
}

.price-inputs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.price-box {
  flex: 1;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 8px 10px;
  text-align: center;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.price-to {
  color: #6c757d;
  font-size: 14px;
}

.filter-actions .apply-btn {
  background-color: var(--green-color);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  width: 100%;
  margin-top: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.filter-actions .apply-btn:hover {
  opacity: 0.9;
}

.reset-filters-btn {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #6c757d;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.reset-filters-btn:hover {
  color: var(--green-color);
}

/* Mobile active sidebar fix */
.filter-sidebar.active {
  transform: translateX(0);
}

/* ================= DESKTOP ================= */

@media(min-width:1200px) {

  .checkout-wrapper {
    flex-direction: row;
  }

  .checkout-left {
    flex: 2;
  }

  .checkout-right {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }

  .two-col .form-group {
    flex: 1;
  }

  .cart-banner {
    text-align: center;
    width: 100%;
    height: 240px;
    padding-top: 48px;

  }

  .main-cart-banner {
    height: 168px;
    background-color: #fff;
  }

  .green {
    color: var(--green-color);
    font-weight: 600;
    margin-left: 148px;
  }

}


/* Dashboard - Mobile First Approach */
.dashboard {
  background: #f8f9fa;
  padding: 20px 15px;
  min-height: 100vh;
}

.dash-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.dashboard-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Mobile Menu Toggle - Only visible on mobile */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #00523b 0%, #003d2d 100%);
  border: none;
  padding: 15px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 82, 59, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 82, 59, 0.3);
}

.mobile-menu-toggle span {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu-toggle span:first-child {
  font-size: 20px;
}

/* Sidebar - Mobile First */
.sidebar {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar .tab-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar .tab-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  transition: all 0.3s ease;
  background: #fff;
  position: relative;
}

.sidebar .tab-link:last-child {
  border-bottom: none;
}

.sidebar .tab-link:hover {
  background: linear-gradient(90deg, #f0fdf4 0%, #dcfce7 100%);
  color: var(--green-color);
}

.sidebar .tab-link.active {
  background: linear-gradient(90deg, #00523b 0%, #003d2d 100%);
  color: #fff;
  font-weight: 600;
}


.sidebar .tab-link span {
  font-size: 16px;
  flex-shrink: 0;
}

/* Content - Mobile First */
.content {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content h3 {
  margin: 0 0 20px 0;
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
}

.tab-content p {
  color: var(--primary-color);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
  text-align: center;
}

/* Form Grid - Mobile First */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 6px;
  
  letter-spacing: 0.5px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.form-group input:focus {
  outline: none;
  border-color: var(--green-color);
  box-shadow: 0 0 0 3px rgba(0, 82, 59, 0.1);
  transform: translateY(-1px);
}

.form-group input::placeholder {
  color: #9ca3af;
}

.form-group.full {
  grid-column: 1 / -1;
}

/* Update Button - Mobile First */
.btn-update {
  background: linear-gradient(135deg, #00523b 0%, #003d2d 100%);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  
  letter-spacing: 1px;
  width: auto;
  box-shadow: 0 4px 15px rgba(0, 82, 59, 0.2);
  position: relative;
  overflow: hidden;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.btn-update::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;
}

.btn-update:hover::before {
  left: 100%;
}

.btn-update:hover {
  background: linear-gradient(135deg, #003d2d 0%, #002d20 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 82, 59, 0.3);
}

.btn-update:active {
  transform: translateY(0);
}

/* Tablet Styles */
@media (min-width: 768px) {
  .dashboard {
    padding: 30px 25px;
  }

  .dashboard-wrapper {
    gap: 20px;
  }

  .mobile-menu-toggle {
    padding: 18px 25px;
    font-size: 15px;
  }

  .sidebar .tab-link {
    padding: 18px 25px;
    font-size: 15px;
  }

  .content {
    padding: 30px 25px;
  }

  .tab-content h3 {
    font-size: 20px;
  }

  .tab-content p {
    font-size: 15px;
  }

  .form-grid {
    gap: 20px;
    margin-bottom: 30px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input {
    padding: 16px 18px;
    font-size: 15px;
  }

  .btn-update {
    padding: 18px 45px;
    font-size: 15px;
    margin: 0;
    text-align: left;
    display: inline-block;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .dashboard {
    padding: 40px 30px;
  }

  .dash-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .dashboard-wrapper {
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .sidebar {
    width: 280px;
    flex-shrink: 0;
    position: static;
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .content {
    flex: 1;
    padding: 35px 30px;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .tab-content h3 {
    font-size: 22px;
    text-align: left;
  }

  .tab-content p {
    font-size: 16px;
    text-align: left;
  }

  .btn-update {
    margin: 0;
    text-align: left;
  }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
  .dashboard {
    padding: 50px 20px;
  }

  .dash-container {
    max-width: 1340px;
  }

  .dashboard-wrapper {
    width: 1070px;
    margin: 0 auto;
  }

  .sidebar {
    width: 300px;
  }

  .content {
    padding: 40px 35px;
  }

  .form-grid {
    gap: 30px;
  }
}

/* Mobile Sidebar - Always visible with tabs */
@media (max-width: 1023px) {
  .sidebar {
    position: relative;
    left: 0;
    width: 100%;
    height: auto;
    z-index: auto;
    transition: none;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .sidebar.active {
    left: 0;
  }

  .sidebar::before {
    display: none;
  }

  .sidebar .tab-link {
    border-bottom: 1px solid #f3f4f6;
  }

  .sidebar .tab-link:hover {
    background: linear-gradient(90deg, #f0fdf4 0%, #dcfce7 100%);
    color: var(--green-color);
    transform: none;
  }

  .sidebar .tab-link.active {
    background: linear-gradient(90deg, #00523b 0%, #003d2d 100%);
    color: #fff;
    font-weight: 600;
    transform: none;
  }

  /* Hide mobile menu toggle since sidebar is always visible */
  .mobile-menu-toggle {
    display: none;
  }
}

/* TERMS OF SERVICES */
/* .mainbox{
width: 900px;

} */
.terms-container {
  display: flex;
  justify-content: center;
}

.mainbox h2 {
  font-size: 32px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.mainbox h5 {
  font-size: 25px;
  margin: 0px;
  font-weight: 500;
  margin-top: -15px;
  margin-bottom: 40px;
}

.mainbox h6 {
  font-size: 20px;
  margin: 20px 0px;
  font-weight: 500;
}

.terms-text {
  text-align: center;
}

.terms-of-services {
  margin: 0px 20px;
  margin-bottom: 50px;
}

@media(min-width:1200px) {
  .mainbox {
    width: 900px;

  }

  .terms-of-services {
    margin: 50px 0px;
  }
}


/* contact us */


.contact-section {
  background: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.contact-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.contact-header p {
  font-size: 15px;
  color: #777;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* MOBILE FIRST (default stacked) */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.info-box h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.info-box h4::after {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background: #ddd;
  margin: 10px auto 0;
}

.info-box p {
  font-size: 15px;
  color: #555;
}

/* DESKTOP VIEW */

@media (min-width: 1200px) {
  .contact-info {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .info-box {
    width: 23%;
  }

  .info-box h4::after {
    margin: 10px 0 0;
  }
}


.contact-wrapper {
  background: #f4f4f4;
  padding: 50px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* MOBILE FIRST */

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.contact-form h3::after {
  content: "";
  width: 284px;
  height: 1px;
  background: #ddd;
  position: absolute;
  right: 0px;
  bottom: 14px;
}



.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 20px 14px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
  background: #fff;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #8bc34a;
}

.full {
  margin-bottom: 20px;
}

button {
  background: var(--green-color);
  color: #fff;
  border: none;
  padding: 14px 25px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: var(--green-color-dark);
}

/* MAP */

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* DESKTOP VIEW */

@media(min-width:1200px) {

  .contact-grid {
    flex-direction: row;
    align-items: flex-start;
  }

  .contact-form {
    width: 50%;
    padding-right: 40px;
  }

  .contact-map {
    width: 50%;
  }

  .form-row {
    flex-direction: row;

  }

  .form-group {
    width: 100%;
  }

  .contact-map iframe {
    height: 100%;
    min-height: 500px;
  }

}

/* Mobile Responsive for Contact Section */
@media (max-width: 768px) {
  .contact-wrapper {
    padding: 30px 15px;
  }

  .contact-grid {
    gap: 30px;
  }

  .contact-form h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .contact-form h3::after {
    width: 155px;
  }

  .form-row {
    gap: 15px;
    margin-bottom: 15px;
  }

  .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea {
    padding: 20px 14px;
    font-size: 14px;
  }

  .contact-map iframe {
    height: 250px;
  }
}

/* Verify Button */
.verify-btn {
  background: #004d3d;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.verify-btn:hover {
  background: #003328;
}

.input-group-verify input {
  margin-bottom: 0 !important;
}

/* Custom Modal */
.c-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.c-modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 12px;
  width: 320px;
  max-width: 90%;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: slipIn 0.4s ease;
}

@keyframes slipIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.c-modal-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  position: relative;
}

.c-modal-header h3 {
  margin: 0;
  color: #004d3d;
  font-size: 18px;
}

.c-close {
  position: absolute;
  right: 0;
  top: -5px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

.c-modal-body p {
  font-size: 15px;
  color: #333;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Force Modal Visibility */
.c-modal-content h3 {
  color: #004d3d !important;
  display: block !important;
}

.c-modal-content p {
  color: #333333 !important;
  display: block !important;
}

.c-modal-footer button {
  display: inline-block !important;
  margin: 10px auto !important;
}

/* bloges */

/* =========================
   GLOBAL
========================= */


.article-section {
  padding: 40px 15px;
  background: #f5f5f5;
}

.article-container {
  max-width: 1200px;
  margin: auto;
}

.section-heading {
  text-align: center;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--primary-color);
}

/* =========================
   HORIZONTAL TABS
========================= */

.article-tabs-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
}

.article-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.article-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: max-content;
}

.article-tab {
  flex: 0 0 auto;
  padding: 10px 20px;
  border-radius: 6px;
  /* border: 1px solid #ddd; */
  background: #dfdfdf;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s ease;
  color: #000;
}

.article-tab.active {
  background: var(--green-color);
  color: #fff;
  border-color: var(--green-color);
}

.article-tab:hover {
  background: var(--green-color-dark);
  color: #fff;
}

/* =========================
   TAB CONTENT
========================= */

.tab-panel {
  display: none;
  margin-top: 50px;
}

.tab-panel.active {
  display: block;
}

/* =========================
   BLOG GRID
========================= */

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.article-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article-info {
  padding: 15px;
  padding-bottom: 30px;
}

.article-info h3 {
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 8px;
}

.article-info p {
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* =========================
   TABLET
========================= */

@media(min-width:768px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-tabs-wrapper {
    overflow: visible;
  }

  .article-tabs {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }
}

/* =========================
   DESKTOP
========================= */

@media(min-width:1200px) {
  .article-tabs {
    display: flex;
    gap: 12px;
    width: max-content;
  }

  .article-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .article-tabs-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
}

/* blog detail */
/* =========================
   GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f4f4f4;
}

/* =========================
   SECTION
========================= */

.blog-detail-section {
  padding: 40px 15px;
}

.blog-detail-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* =========================
   TAG
========================= */

.blogs-tag {
  display: inline-block;
  background: #e5e5e5;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
  color: #333;
}

/* =========================
   TITLE
========================= */

.blog-detail-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #222;
}

/* =========================
   META INFO
========================= */

.blog-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
  justify-content: center;
}

.blog-details-content {
  text-align: left;
}

.blog-details-content h2 {
  margin: 20px 0px;
  color: var(--primary-color);
}

.Reading h2 {
  margin-bottom: 30px;
}

.Reading {
  margin: 15px;
}

/* =========================
   FEATURED IMAGE
========================= */

.blog-featured-image {
  margin-bottom: 30px;
}

.blog-featured-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* =========================
   CONTENT
========================= */

.blog-detail-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  line-height: 1.7;
  font-size: 15px;
  color: #444;
}

.blog-detail-content h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #222;
}

.socil-icons-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.socil-icons-detail p {
  margin: 0;
  font-size: 16px;
  color: #222;
}

.socil-icons-detail a {
  margin: 0;
  font-size: 16px;
  color: #222;
}


/* =========================
   TABLET
========================= */

@media(min-width:768px) {

  .blog-detail-title {
    font-size: 38px;
  }

  .blog-meta {
    flex-direction: row;
    gap: 20px;
  }

  .blog-detail-content {
    padding: 30px;
    font-size: 16px;
  }

}

/* =========================
   DESKTOP
========================= */

@media(min-width:1200px) {

  .blog-detail-section {
    padding: 70px 20px;
  }

  .blog-detail-title {
    font-size: 48px;
  }

  .Reading {
    margin: 0px 225px;
  }

}

/* =========================
   COMMENT SECTION
========================= */

.comment-section {
  padding: 40px 15px;
  background: #f4f4f4;
}

.comment-container {
  max-width: 900px;
  margin: auto;
  background: #f7f7f7;
  padding: 25px;
  border: 1px solid #e0e0e0;
}

/* =========================
   TITLE & TEXT
========================= */

.comment-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.comment-note {
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
}

.comment-policy {
  font-size: 14px;
  margin-bottom: 25px;
  color: #555;
}

.comment-policy a {
  color: #222;
  text-decoration: underline;
}

/* =========================
   FORM
========================= */

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  margin-bottom: 15px;
  outline: none;
  background: #fff;
  transition: 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #0b5d3b;
}

.comment-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* =========================
   BUTTON
========================= */

.submit-btn {
  background: var(--green-color);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: var(--green-color-dark);
}

/* =========================
   TABLET
========================= */

@media(min-width:768px) {

  .form-row {
    display: flex;
    gap: 20px;
  }

  .form-row input {
    margin-bottom: 0;
  }

  .comment-container {
    padding: 35px;
  }
}

/* =========================
   DESKTOP
========================= */

@media(min-width:1024px) {
  .comment-section {
    padding: 70px 20px;
  }

  .comment-title {
    font-size: 26px;
  }
}


/* Section */
.recover-section {
  padding-top: 50px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;

}

/* Box */
.recover-box {
  width: 100%;
  max-width: 380px;
  text-align: center;
}

/* Heading */
.recover-box h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--primary-color);
}

/* Input */
.recover-box input {
  width: 100%;
  height: 67px;
  padding: 0 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 18px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.recover-box input:focus {
  border-color: #4a6fa5;
}

/* Button */
.recover-box button {
  width: 100%;
  height: 67px;
  background: var(--green-color);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.recover-box button:hover {
  background: var(--green-color-dark);
}

/* Back link */
.back-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  color: var(--primary-color);
  text-decoration: underline;
}

/* hero banner slider */
.hero-slider {
  width: 100%;
}

.heroSwiper {
  width: 100%;
  height: auto;
}

/* Slide */
.swiper-slide {
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* IMPORTANT PART */
.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* pura image dikhega */
  display: block;
}

/* Tablet */
@media (min-width: 768px) {
  .heroSwiper {
    height: auto;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .heroSwiper {
    height: auto;
  }
}

.hero-section {
  height: 165px;
}

@media (min-width: 1200px) {
  .hero-section {
    height: 500px;
  }
}