/* ========================================
   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;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

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;
}

.block-img-1::after {
  content: "•";
  position: absolute;
  right: -25px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

/* ===== 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, #4b3030 0%, #00523b 100%);
  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;
}

.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;
  text-transform: uppercase;
  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: -5px;
  right: -8px;
  background: #ff4d4d;
  color: #fff;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 50%;
  min-width: 15px;
  text-align: center;
}

/* 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: -6px;
  right: -8px;
  background: #ff4d4d;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* ===== 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: 15px;
  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: uppercase;
  letter-spacing: 0.5px;
}

.mega-column h4:first-child {
  margin-top: 0;
}

.mega-column h4:not(:first-child) {
  margin-top: 25px;
}

.mega-column a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  padding: 6px 0;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

.mega-column a:hover {
  color: #00523b;
  padding-left: 8px;
  border-bottom-color: #e0e0e0;
}

.mega-parent > a:hover {
  color: #00523b;
}

/* ===== HERO SECTION (MOBILE) ===== */
.hero-section {
  background-image: url("../img/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* ===== 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;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  position: relative;
  text-transform: uppercase;
  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: 1200px;
  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(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #00523b;
}

/* Product Image */
.product-image {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.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;
  left: 15px;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  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: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 12px 0;
  line-height: 1.3;
  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: #666;
}

/* 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: #999;
  text-decoration: line-through;
}

/* Product Variants */
.product-variants {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.variant-btn {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #495057;
  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;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  text-transform: uppercase;
  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: 2px solid #e9f7ee;
  border-radius: 20px;
  padding: 50px 40px;
  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;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px 0;
  color: #00523b;
  text-align: center;
  position: relative;
}

.journey-content h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  margin: 10px 0px;
}

.journey-content p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 30px;
}

.button-read-more {
  background: linear-gradient(135deg, #00523b 0%, #003d2d 100%);
  color: #fff;
  padding: 16px 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: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 82, 59, 0.3);
  border: 2px solid transparent;
}

.button-read-more:hover {
  background: linear-gradient(135deg, #003d2d 0%, #002d20 100%);
  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: 1750px;
  margin-top: 10px;
}

.read-toggle-btn {
  background: transparent;
  border: none;
  text-decoration: underline;
  color: #00523b;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

/* ===== 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;
  text-transform: uppercase;
  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;
}

.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: linear-gradient(135deg, #00523b 0%, #003d2d 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  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;
}

.blog-date {
  font-size: 13px;
  color: #00523b;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-heading {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 15px 0;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.blog-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

/* Blog Button */
.blog-button-container {
  text-align: center;
  margin-top: 30px;
}

.all-blog-btn {
  background: linear-gradient(135deg, #00523b 0%, #003d2d 100%);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  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: linear-gradient(135deg, #003d2d 0%, #002d20 100%);
  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;
}

.myImageSwiper {
  width: 100%;
}

.myImageSwiper .swiper-slide {
  transition: 0.3s;
}

.myImageSwiper .swiper-slide img {
  width: 100%;
  height: 200px;
  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;
  font-weight: 700;
  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%);
}

.faq .container {
  width: 100%;
  margin: auto;
  max-width: 800px;
}

.faq-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: #00523b;
  margin-bottom: 40px;
  position: relative;
  text-transform: uppercase;
  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: linear-gradient(135deg, #00523b 0%, #003d2d 100%);
  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: linear-gradient(135deg, #003d2d 0%, #002d20 100%);
}

.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: #2c3e50;
  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;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  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;
}

/* 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: 0px;
  font-size: 14px;
  position: relative;
}

.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 */
  .hero-section {
    height: 350px;
  }

  /* 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: 18px;
  }

  .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: 890px;
  }

  /* 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: 17px;
  }

  .footer-links a {
    font-size: 16px;
  }

  .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) {
  .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, #4b8b6c, #c98a8a);
    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(0) !important;
  }

  /* Mobile Sidebar (Hidden on Desktop) */
  .mobile-nav-sidebar,
  .mobile-nav-overlay {
    display: none !important;
  }

  /* Hero Section */
  .hero-section {
    height: 570px;
  }

  /* 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;
    font-weight: bold;
    line-height: 0px;
    margin-bottom: 60px;
  }

  .journey-content h6 {
    font-size: 20px;
    font-weight: 600;
    line-height: 0px;
  }

  .journey-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
  }

  .button-read-more {
    padding: 20px 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(4, 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: 1200px;
  }
}
