.category-round-img {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    border: 3px solid #013419;
    object-fit: cover;
    background: #fff;
    display: block;
    margin: 0 auto 10px;
    padding:3px;
}
@media (max-width: 767px) {
    .category-round-img {
        width: 100px;
        height: 100px;
    }
    .wrap-slider img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
}
.collection-item-circle {
    transition: transform 0.5s ease;
}

.collection-item-circle:hover {
    transform: scale(1.05);
}


/* Remove old grey background */
.collection-item-circle,
.collection-image {
    background: none !important;
    box-shadow: none !important;
}

/* Custom navigation arrows */
.swiper-button-next.custom-next,
.swiper-button-prev.custom-prev {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #013419;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.swiper-button-next.custom-next::after,
.swiper-button-prev.custom-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* NAMESPACE: .bs- (best-sellers) - drop into global CSS */
.bs-products-section { padding: 24px 0; background: transparent; }
.bs-products .bs-title-row { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:18px; }
.bs-title { font-size:24px; margin:0; color:#0a4b43; }
.bs-shop-all { color:#0a4b43; font-weight:600; text-decoration:none; }

/* grid: 4 columns desktop, 2 tablet, 2 mobile */
.bs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 1200px) { .bs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .bs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .bs-grid { grid-template-columns: repeat(1, 1fr); } }

/* card */
.bs-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eee;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s ease, transform .15s ease;
}
.bs-card:hover { box-shadow: 0 12px 30px rgba(10,72,66,.08); transform: translateY(-4px); }

/* image area */
.bs-image-wrap { 
  position: relative; 
  width:100%; 
  height: 300px; 
  overflow:hidden; 
  background:#fff; 
  display:flex;
  align-items:center;
  justify-content:center;
}
@media (max-width: 767px) { .bs-image-wrap { height: 175px; } }

.bs-image-link { display:block; width:100%; height:100%; }
.bs-img { 
  width:100%; 
  height:100%; 
  object-fit: contain; /* ✅ show full image without cutting */
  display:block; 
}

/* badges (top-left) */
.bs-badges { position: absolute; top: 12px; left: 12px; display:flex; flex-direction:column; gap:8px; z-index: 4; }
.bs-badge { color:#fff; font-weight:700; font-size:12px; padding:6px 8px; border-radius:6px; display:inline-block; white-space:nowrap; }
.bs-badge-sale { background: #e24545; } /* red */
.bs-badge-seller { background:#ff8a33; } /* #013419 */

/* stock pill (top-right) */
.bs-stock-pill { position:absolute; top:12px; right:12px; padding:6px 10px; border-radius:12px; font-size:12px; color:#fff; background:#0f855b; z-index:4; }
.bs-outofstock { background:#c73a3a !important; }

/* body */
.bs-body { padding:14px; display:flex; flex-direction:column; gap:10px; align-items:stretch; text-align:center; }

/* name */
.bs-name { font-size:16px; margin:0; line-height:1.2; height:35px;font-weight:bold; overflow:hidden; }
.bs-name a { color:#0b3f3a; text-decoration:none; display:block; }

/* rating row */
.bs-stars { display:flex; gap:3px; align-items:center; }
.bs-star path { fill: currentColor; }
.bs-reviews { color:#6b6b6b; font-size:12px; }
.bs-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  gap: 10px;
}

.bs-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f7c948;
  font-size: 13px;
}

.bs-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

/* price */
.bs-price-current { color:#013419; font-weight:700; font-size:18px; }
.bs-price-old { color:#8b8b8b; font-size:13px; text-decoration: line-through; }

/* variant row */
.bs-variant-row { display:flex; gap:8px; align-items:center; justify-content:center; margin-top:6px; }
.bs-variant-select { padding:8px 10px; border-radius:8px; border:1px solid #ddd; min-width: 45%; font-size:13px; background:#fff; }
.bs-btn { cursor:pointer; border-radius:8px; padding:10px 14px; border: none; font-weight:700; }
.bs-btn-add { background:#fff; border:1px solid #013419; color:#013419; padding:9px 12px; }
.bs-btn-add:hover { background:#f6fffb; }

/* buy now full width */
.bs-btn-buy { margin-top:8px; background:#013419; color:#fff; width:100%; padding:12px; font-size:14px; }
.bs-btn-buy:hover { background:#0d5b4f; }
.bs-btn-wishlist {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  color: #e63946; /* modern red */
  border: 1px solid #e63946;
  font-weight: 500;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px; /* softer pill */
  cursor: pointer;
  transition: all 0.25s ease;
}

.bs-btn-wishlist:hover {
  background: #e63946;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(230, 57, 70, 0.25);
}

.bs-heart {
  width: 14px;
  height: 14px;
  fill: #0d5b4f; /* match text color */
}

/* small utilities */
.bs-price-current, .bs-price-old { display:inline-block; }
/* Best Sellers title row */
.bs-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 14px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fffaf0, #fff); /* soft gradient */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Heading */
.bs-title {
  font-size: 28px;
  font-weight: 800; /* bolder */
  color: #0a4b43;
  margin: 0;
  letter-spacing: -0.5px;
  position: relative;
}

.bs-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #013419; /* underline accent */
  border-radius: 2px;
}

/* Shop all link */
.bs-shop-all {
  color: #0a4b43;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(255,165,0,0.1); /* light #013419 tint */
  transition: all 0.25s ease;
}

.bs-shop-all:hover {
  background: #013419;
  color: #fff;
}
/* Section wrapper */
.flat-spacing-9 {
  padding: 60px 0;
  background: #f9f9f9; /* light background */
}

/* Title */
.flat-title .title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  color: #0a4b43;
  margin-bottom: 30px;
  position: relative;
}

.flat-title .title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #013419;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Tabs */
.widget-tab-2 {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.widget-tab-2 .nav-tab-item a {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.widget-tab-2 .nav-tab-item a.active,
.widget-tab-2 .nav-tab-item a:hover {
  background: #013419;
  color: #fff;
  border-color: #013419;
}

/* Tab content layout */
.widget-card-store {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.widget-card-store:hover {
  transform: translateY(-4px);
}

/* Text content */
.store-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0a4b43;
}

.store-item-info p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Image */
.store-img img {
  width: 100%;
  max-height: 300px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .widget-card-store {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .store-img {
    order: -1; /* image above text */
  }
}
/* Tab Content Wrapper */
.tab-content {
  margin-top: 20px;
}

/* Card styling with gradient */
.widget-card-store {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, #fffaf3 0%, #fff 100%);
  border-radius: 18px;
  padding: 40px 30px;
  border: 2px solid #f1f1f1;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.widget-card-store:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border-color: #013419;
  background: linear-gradient(135deg, #fff7eb 0%, #fff 100%);
}

/* Text block */
.store-heading {
  font-size: 26px;
  font-weight: 800;
  color: #0a4b43;
  margin-bottom: 18px;
  position: relative;
}

.store-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #013419;
  margin-top: 8px;
  border-radius: 2px;
}

.store-item-info p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #444;
}

/* Image block */
.store-img img {
  width: 100%;
  max-height: 320px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.widget-card-store:hover .store-img img {
  transform: scale(1.04);
}

/* Responsive layout */
@media (max-width: 991px) {
  .widget-card-store {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 25px 20px;
  }
  .store-img {
    order: -1;
  }
  .store-heading {
    font-size: 22px;
  }
  .store-item-info p {
    font-size: 15px;
  }
}
.banner-slider {
  margin: 40px 0;
}

/* make anchor a full-block container so it doesn't affect sizing */
.carousel-item .banner-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none; /* remove underline if any */
}

/* ensure the image fills the slide and uses object-fit */
a .banner-img {
  width: 100%;
  height: 400px;          /* change height to your desired banner height */
  object-fit: cover;      /* cover / contain depending on desired crop */
  object-position: center;
  display: block;
}

/* responsive */
@media (max-width: 768px) {
  a .banner-img { height: 220px; }
}

/* 🔹 Video section wrapper */
.video-hero {
  position: relative;
  overflow: hidden;
}

.video-hero video {
  width: 100%;
  height: 100vh; /* Full screen height */
  object-fit: cover;
}

/* 🔹 Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* Semi-dark layer */
  z-index: 1;
}

/* 🔹 Content styling */
.video-hero .box-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
}

.video-hero .subheading {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffcc66; /* Highlight color */
  margin-bottom: 15px;
}

.video-hero .heading {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto 20px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

/* 🔹 CTA Button (if enabled) */
.btn-cta {
  display: inline-block;
  padding: 12px 28px;
  background: #ff7b00;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta:hover {
  background: #e56700;
  transform: translateY(-2px);
}

/* 🔹 Responsive */
@media (max-width: 768px) {
  .video-hero video {
    height: 60vh; /* Smaller height on mobile */
  }
  .video-hero .heading {
    font-size: 1.8rem;
    padding: 0 15px;
  }
}
/* Section base */
.why-section { background:#fff; }
.why-title { font-size:32px; font-weight:800; color:#0a4b43; margin-bottom:5px; }
.why-desc { color:#555; margin-bottom:25px; }

/* Left image */
.why-img-wrap {
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.why-img {
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

/* Right side content */
.why-list {
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:20px;
}
.why-list li {
  display:flex;
  align-items:flex-start;
  gap:15px;
}
.why-list h6 {
  margin:0;
  font-weight:700;
  font-size:14px;
  color:#222;
}
.why-list p {
  margin:3px 0 0;
  color:#666;
  font-size:14px;
}

/* Icon circle */
.icon-circle {
  flex:0 0 42px;
  height:42px;
  width:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:16px;
}
.bg-orange { background:#ff6b2c; }
.bg-teal   { background:#007c74; }
.bg-navy   { background:#34495e; }
.bg-green  { background:#27ae60; }

/* Responsive */
@media (max-width: 768px) {
  .why-title { font-size:24px; }
  .why-img-wrap { margin-bottom:20px; }
}
.section-title {
  font-weight: 700;
  color: #0a4b43;
}
.reel-title {
  font-size: 22px;
  font-weight: 600;
  color: #0a4b43;
  margin-bottom: 20px;
}

.video-item {
  position: relative;
}

.reel-video {
  width: 100%;
  height: 400px; /* tall like reels */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
}

/* Duration tag */
.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Sound toggle button */
.sound-toggle {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sound-toggle.unmuted { background: rgba(0,128,0,0.7); }
/* Section wrapper */
.product-highlight {
  margin-top: 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* AI blobs background */
.ai-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

/* green blobs */
.ai-blobs::before,
.ai-blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: floatBlob 18s infinite ease-in-out alternate;
}

/* light green blob */
.ai-blobs::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(123, 237, 159, 0.6), transparent 70%);
  top: -100px;
  left: -80px;
  animation-delay: 0s;
}

/* darker green blob */
.ai-blobs::after {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(34, 139, 34, 0.6), transparent 70%);
  bottom: -120px;
  right: -100px;
  animation-delay: 6s;
}

/* floating animation */
@keyframes floatBlob {
  0%   { transform: scale(1) translate(0,0); }
  50%  { transform: scale(1.2) translate(40px, -30px); }
  100% { transform: scale(1) translate(-30px, 20px); }
}

/* Glow border for image */
.highlight-img {
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 128, 0, 0.4), 
              0 0 60px rgba(50, 205, 50, 0.3);
  transition: all 0.4s ease-in-out;
}

.highlight-img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(0, 128, 0, 0.6), 
              0 0 70px rgba(50, 205, 50, 0.5);
}

/* Headings */
.highlight-heading {
  font-size: 2rem;
  font-weight: 800;
  margin: 15px 0;
  color: #1a3d1a;
}

.highlight-heading span {
  color: #2ecc71; /* vibrant green accent */
}
.also-shop-on {
  background: #fffdf8;
  padding: 40px 0;
}

.also-shop-on .title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1a3d1a; /* organic green */
}

.logo-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.logo-box img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
}

.logo-box:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
/* Section background gradient */
/* Background Gradient */
.organic-features {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  padding: 50px 0;
}

/* Feature Card */
.feature-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Circular Icon */
.icon-circle-1 {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #2e7d32; /* Organic green */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #fff;
  font-size: 28px;
}

/* Title */
.feature-box .title {
  font-size: 16px;
  font-weight: 600;
  color: #1a3d1a;
}
.widget-tab-2 .nav-tab-item {
    width: 25%;
}

/* Mobile (max-width: 768px or adjust as needed) */
@media (max-width: 768px) {
    .widget-tab-2 .nav-tab-item {
        width: 100%;
    }
}