:root {
  /* Primary Brand Colors */
  --primary: #2f6f2f;
  --primary-dark: #245724;
  --accent: #ff6b00;

  /* Green Shades */
  --green-dark: #1b5e20;
  --green-light: #2e7d32;
  --green: #2f5d1e;

  /* Background Colors */
  --bg: #f4f6f3;
  --bg-soft: #f7f7f7;

  /* Text Colors */
  --text-main: #1f2937;
  --text-dark: #222;
  --text-light: #777;
  --text-muted: #6b7280;

  /* Borders */
  --border: #e5e7eb;

  /* Accent & Utility */
  --color-primary-start: #1b5e20;
  --color-primary-end: #2e7d32;
  --color-accent: #ffd54f;
  --color-white: #ffffff;
  --color-muted: rgba(255, 255, 255, 0.75);
  --color-overlay: rgba(255, 255, 255, 0.06);

  /* Typography */
  --font-primary: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-sm: 14px;
  --font-size-md: 15px;

  /* UI */
  --radius: 12px;
}

*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove default list styles */
ul,
ol {
  list-style: none;
}

/* Images responsive */
img {
  max-width: 100%;
  display: block;
}

/* Remove default button styles */
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* BODY STYLING */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-md);
  line-height: 1.6;
  background-color: var(--color-white);
  color: #1f2937;
  /* soft dark text */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ANCHOR (a) STYLING */

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-primary-end);
}

/* Optional underline animation style */
a.underline-hover {
  position: relative;
}

a.underline-hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,
      var(--color-primary-start),
      var(--color-primary-end));
  transition: width 0.3s ease;
}

a.underline-hover:hover::after {
  width: 100%;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg,
      var(--color-primary-start),
      var(--color-primary-end));
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  overflow: hidden;
}

/* Remove Bootstrap row side-shift */
.announcement-bar .row {
  margin-left: 0;
  margin-right: 0;
}

/* Left wrapper */
.announcement-wrapper {
  position: relative;
  overflow: hidden;
}

/* Track */
.announcement-track {
  display: flex;
  animation: slide 12s infinite ease-in-out;
}

/* Slide */
.announcement-slide {
  min-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

/* Text */
.announcement-slide p {
  margin: 0;
  display: flex;
  align-items: center;
  color: var(--color-white);
}

/* Emoji / icon */
.icon {
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* Social icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons a {
  color: var(--color-muted);
  font-size: 16px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: var(--color-accent);
}

/* Animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }

  30% {
    transform: translateX(0);
  }

  35% {
    transform: translateX(-100vw);
  }

  65% {
    transform: translateX(-100vw);
  }

  70% {
    transform: translateX(-200vw);
  }

  100% {
    transform: translateX(-200vw);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .announcement-bar {
    font-size: var(--font-size-md);
  }
}

/* ==
   FIX HEADER LAYOUT (MATCHES YOUR HTML)
   == */

.main-header {
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 9;
  border-bottom: 1px solid #eee;
}

.header-inner {
  position: relative;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 48px;
  width: auto;
}

/* NAVIGATION */
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.nav-item {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
  cursor: pointer;
}

.nav-item>a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.nav-item:hover {
  color: var(--color-primary-start);
}

/* DROPDOWN */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 999;
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #1f2937;
  text-decoration: none;
}

.dropdown a:hover {
  background: #f7f7f7;
  color: var(--color-primary-start);
}

/* HEADER ICONS */
.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 18px;
  color: #1f2937;
}

.header-icons i {
  cursor: pointer;
}

.cart {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-accent);
  color: #000;
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* MOBILE MENU */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1f2937;
  margin: 5px 0;
}

@media (max-width: 1023px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .logo {
    justify-self: center;
  }
}

/*  ANNOUNCEMENT BAR  */
.announcement-bar {
  background: linear-gradient(90deg,
      var(--color-primary-start),
      var(--color-primary-end));
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  overflow: hidden;
}

.announcement-bar .row {
  margin-left: 0;
  margin-right: 0;
}

.announcement-wrapper {
  overflow: hidden;
}

.announcement-track {
  display: flex;
  animation: slide 12s infinite ease-in-out;
}

.icon {
  font-size: 18px;
}

.social-icons {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
}

.social-icons a {
  color: var(--color-muted);
}

.social-icons a:hover {
  color: var(--color-accent);
}

@keyframes slide {

  0%,
  30% {
    transform: translateX(0);
  }

  35%,
  65% {
    transform: translateX(-100vw);
  }

  70%,
  100% {
    transform: translateX(-200vw);
  }
}

/*  HEADER  */
.main-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9;
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 12px 16px;
}

.logo img {
  height: 48px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.nav-item {
  position: relative;
  font-size: 15px;
  font-weight: 500;
}

.nav-item>a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1f2937;
  text-decoration: none;
}

.nav-item:hover {
  color: var(--color-primary-start);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  min-width: 220px;
  padding: 8px 0;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s;
  z-index: 999;
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #1f2937;
}

.dropdown a:hover {
  background: #f7f7f7;
}

.header-icons {
  display: flex;
  gap: 18px;
  font-size: 18px;
}

.cart {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-accent);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1f2937;
  margin: 5px 0;
}

@media (max-width: 1023px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo {
    justify-self: center;
  }
}

/*  HERO SLIDER  */
.hero-slider {
  position: relative;
  z-index: 1;
}

.hero-slider img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Arrows */
.swiper-button {
  color: #000;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.7);
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px;
}

@media (max-width: 767px) {
  .swiper-button {
    display: none;
  }
}

/* SELECT YOUR CONCERN */

.concern-section {
  padding: 40px 16px 20px;
  text-align: center;
  font-family: "Roboto", system-ui, sans-serif;
}

.concern-header h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Scroll container */

.concern-tabs {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.concern-tabs::-webkit-scrollbar {
  height: 5px;
}

.concern-tabs::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

/* Pills wrapper */

.concern-tabs-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  width: max-content;
  margin: 0 auto;
}

/* Individual pill */

.concern-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #1f2937;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* icon */

.concern-tab img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

/* Hover */

.concern-tab:hover {
  background: #e5e7eb;
}

/* Active tab */

.concern-tab.active {
  background: var(--color-primary-start);
  color: #ffffff;
}

/* MOBILE */

@media (max-width: 480px) {

  .concern-header h2 {
    font-size: 22px;
  }

  .concern-tab {
    font-size: 13px;
    padding: 7px 12px;
  }

  .concern-tab img {
    width: 22px;
    height: 22px;
  }

}

/* TABLET */

@media (min-width: 768px) {

  .concern-tabs {
    overflow: visible;
  }

  .concern-tabs-inner {
    justify-content: center;
    flex-wrap: wrap;
  }

  .concern-header h2 {
    font-size: 30px;
  }

  .concern-tab {
    padding: 10px 18px;
    font-size: 15px;
  }

}

/* LAPTOP */

@media (min-width: 1024px) {

  .concern-header h2 {
    font-size: 32px;
  }

  .concern-tabs-inner {
    gap: 14px;
  }

}

/* LARGE DESKTOP */

@media (min-width: 1280px) {

  .concern-tabs-inner {
    gap: 16px;
  }

  .concern-tab {
    font-size: 16px;
    padding: 12px 20px;
  }

  .concern-tab img {
    width: 30px;
    height: 30px;
  }

}

/* section */
.product-scroll-section {
  padding: 40px 20px;
  font-family: Roboto, sans-serif;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

/* SCROLLER */
.product-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.product-scroll::-webkit-scrollbar {
  height: 6px;
}

.product-scroll::-webkit-scrollbar-thumb {
  background: #cbd5c0;
  border-radius: 10px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 14px;
  position: relative;
  scroll-snap-align: start;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.badge-row {
  position: relative;
  margin-bottom: 10px;
}

/* BADGE */
.badge-row .badge {
  background: #e7f3dc;
  color: #2f6b1c;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 2;
}

/* IMAGE */
.image-box {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.image-box img {
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.4s ease;
}

.img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .img-hover {
  opacity: 1;
}

/* INFO */
.product-card h3 {
  font-size: 15px;
  margin: 12px 0 6px;
  text-align: center;
}

.rating {
  text-align: center;
  color: #22c55e;
  font-size: 13px;
}

.rating span {
  color: #555;
}

/* PRICE */
.price {
  text-align: center;
  margin: 8px 0;
}

.price .current {
  font-weight: 700;
}

.price .old {
  text-decoration: line-through;
  color: #888;
  margin-left: 6px;
}

/* BUTTON */
.product-card .add-cart-btn {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
}

/* QTY BOX SAME SIZE AS ADD TO CART */
.product-card .qty-box {
  width: 100%;
}

/* Main Qty Container */
.product-card .qty-box .qty {
  width: 100%;
  background: var(--color-primary-start);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  font-size: 14px;
}

/* Buttons */
.product-card .qty-box .qty button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: 0.2s ease;
}

/* Hover Effect */
.product-card .qty-box .qty button:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* Quantity Number */
.product-card .qty-box .qty-count {
  font-weight: 600;
  font-size: 14px;
}

/* KEEP SCROLLING ENABLED */
.product-scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

/* VIEW ALL BUTTON */
.view-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: var(--color-primary-start);
  color: #fff;
  transition: all 0.25s ease;
}

.view-all-btn:hover {
  background: #145017;
  transform: translateY(-2px);
}

/* VIEW ALL PRODUCTS LINK */

.view-all-wrapper {
  padding: 8px 20px;
  display: flex;
  justify-content: center;
}

/* Link styling */
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
  opacity: 0.7;
  position: relative;
  transition:
    opacity 0.3s ease,
    color 0.3s ease;
}

/* Arrow icon */
.arrow-icon {
  width: 8px;
  height: 9px;
  display: inline-flex;
  transition: transform 0.3s ease;
}

/* Hover effects */
.view-all-link:hover {
  opacity: 1;
  color: var(--color-primary-start);
}

.view-all-link:hover .arrow-icon {
  transform: translateX(4px);
}

/* RESPONSIVE */

@media (min-width: 768px) {
  .view-all-wrapper {
    padding: 12px 20px;
  }

  .view-all-link {
    font-size: 15px;
  }
}

/* COLLECTION SECTION */

.collection-section {
  padding: 40px 20px;
}

.collection-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* WRAPPER */

.collection-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* COLLECTION CARD */

.collection-card {
  text-align: center;
  text-decoration: none;
  color: #1f2937;
  transition: transform 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
}

/* IMAGE */

.collection-image {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.collection-card:hover img {
  transform: scale(1.05);
}

.collection-name {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
}

/* SMALL MOBILE */

@media (max-width: 480px) {
  .collection-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .collection-image {
    max-width: 130px;
  }

  .collection-title {
    font-size: 24px;
  }
}

/* TABLET */

@media (min-width: 768px) {
  .collection-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .collection-image {
    max-width: 160px;
  }
}

/* LAPTOP */

@media (min-width: 1024px) {
  .collection-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }

  .collection-image {
    max-width: 180px;
  }
}

/* LARGE DESKTOP */

@media (min-width: 1280px) {
  .collection-wrapper {
    grid-template-columns: repeat(6, 1fr);
  }

  .collection-image {
    max-width: 200px;
  }
}

/* ========
   WATCH & SHOP
   ======== */

.watch-shop {
  padding: 40px 20px;
}

/* HEADER */

.watch-shop .watch-shop-header {
  text-align: center;
}

.watch-shop .watch-shop-header h2 {
  font-size: 26px;
  font-weight: 600;
  color: #305724;
  margin-bottom: 25px;
}

/* SLIDER */

.watch-shop .watch-shop-slider {
  padding-bottom: 10px;
}

/* CARD */

.watch-shop .watch-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  transition: transform .3s;
}

.watch-shop .watch-card:hover {
  transform: translateY(-5px);
}

/* VIDEO */

.watch-shop .video-box {
  position: relative;
  height: 360px;
  overflow: hidden;
  cursor: pointer;
}

.watch-shop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PLAY ICON */

.watch-shop .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  transition: all .3s;
}

.watch-shop .video-box:hover .play-overlay {
  background: #305724;
  transform: translate(-50%, -50%) scale(1.1);
}

/* VIEWS */

.watch-shop .views {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
}

/* ACTION ICONS */

.watch-shop .actions {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
}

.watch-shop .icon {
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

/* PRODUCT BOX */

.watch-shop .product-box {
  padding: 14px;
}

.watch-shop .product-info {
  display: flex;
  gap: 10px;
  align-items: center;
}

.watch-shop .product-info img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
}

.watch-shop .product-name {
  font-size: 14px;
  font-weight: 500;
}

.watch-shop .price {
  font-size: 13px;
  text-align: left;
}

.watch-shop .price span {
  color: #888;
  text-decoration: line-through;
}

/* BUTTON */

.watch-shop .buy-btn {
  width: 100%;
  margin-top: 10px;
  background: #305724;
  border: none;
  color: #fff;
  padding: 9px;
  border-radius: 8px;
  font-size: 14px;
}

/* MODAL */

.watch-video-modal .modal-content {
  background: #000;
  border: none;
  border-radius: 12px;
}

.watch-video-modal video {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.watch-video-modal .close-video {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 5;
}

/* PROMOTION BANNER */

.promotion-section {
  padding: 0 0 28px;
}

.promotion-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

/* CLICKABLE AREA */
.promotion-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

/* IMAGE */
.promotion-link img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

/* RESPONSIVE */

/* MOBILE */
@media (max-width: 767px) {
  .promotion-section {
    padding-bottom: 20px;
  }

  .promotion-container {
    border-radius: 6px;
  }

  .promotion-link img {
    border-radius: 6px;
  }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1023px) {
  .promotion-container {
    border-radius: 8px;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .promotion-section {
    padding-bottom: 28px;
  }
}

.product-section {
  padding: 40px 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

/* BADGE */
.product-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d8f3c7;
  color: #1f6d2a;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 3;
}

/* HOVER ADD TO CART */
.hover-actions {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .hover-actions {
  opacity: 1;
}

/* INFO */
.card-info {
  padding: 16px;
  text-align: center;
}

.card-info h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.rating {
  color: #18b857;
  font-size: 14px;
}

.price {
  margin-top: 6px;
  font-size: 18px;
}

.price s {
  font-size: 14px;
  color: #999;
  margin-left: 6px;
}


/* ARROWS */
.slider-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  opacity: 0.6;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.slider-arrow:hover {
  opacity: 1;
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.slider-arrow.prev {
  left: 10px;
  transform: translateY(-50%) rotate(90deg);
}

.slider-arrow.next {
  right: 10px;
  transform: translateY(-50%) rotate(-90deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .slider-arrow {
    display: none;
  }
}

/* BUTTON BELOW IMAGE */
.bottom-action {
  padding: 0 16px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.35s ease;
}

/* SHOW ON HOVER */
.product-card:hover .bottom-action {
  transform: translateY(0);
  opacity: 1;
}


/* MOBILE – always visible */
@media (max-width: 768px) {
  .bottom-action {
    transform: translateY(0);
    opacity: 1;
    padding-top: 12px;
  }
}

/* SCROLLING BANNER */

.scrolling-banner {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #2e7d32, #43a047);
  padding: 14px 0;
}

/* wrapper */

.scroll-wrapper {
  display: flex;
  overflow: hidden;
}

/* moving track */

.scroll-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: scrollBanner 25s linear infinite;
}

/* pause hover */

.scrolling-banner:hover .scroll-track {
  animation-play-state: paused;
}

/* item */

.banner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-weight: 500;
  color: #fff;
  font-size: 15px;
  letter-spacing: .3px;
}

/* icon */

.banner-icon {
  color: #ffd54f;
  font-size: 14px;
}

/* animation */

@keyframes scrollBanner {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

}

/* mobile */

@media(max-width:768px) {

  .banner-item {
    font-size: 14px;
  }

  .scroll-track {
    gap: 25px;
  }

}


/* SECTION */
.category-section {
  padding: 40px 20px;
  max-width: 1280px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

/* SLIDER WRAPPER */
.category-slider-wrapper {
  position: relative;
}

/* SLIDER */
.category-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.category-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.category-card {
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
  flex-shrink: 0;
}

.category-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

/* SHOP BUTTON */
.shop-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 26px;
  border: 1px solid var(--green-dark);
  border-radius: 30px;
  color: var(--green-dark);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-btn:hover {
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  color: var(--white);
}

/* ARROWS */
.slider-arrow {
  position: absolute;
  top: 45%;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease;
}

.slider-arrow svg {
  width: 16px;
  height: 16px;
}

.slider-arrow.prev {
  left: -20px;
  transform: rotate(90deg);
}

.slider-arrow.next {
  right: -20px;
  transform: rotate(-90deg);
}

/* SHOW ARROWS ON DESKTOP */
@media (min-width: 1024px) {
  .slider-arrow {
    display: flex;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .category-card {
    min-width: 48%;
  }

  .category-card img {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .category-card {
    min-width: 70%;
  }
}

/* SECTION */
.category-section {
  padding: 40px 20px;
  max-width: 1280px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

/* SLIDER */
.category-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* CARD */
.category-card {
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
}

/* IMAGE */
.image-wrap {
  overflow: hidden;
  border-radius: var(--radius);
}

.category-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

/* BUTTON */
.shop-btn {
  display: inline-block;
  margin: 14px 0 10px;
  padding: 10px 26px;
  border: 1px solid var(--green-start);
  border-radius: 30px;
  color: var(--green-start);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-btn:hover {
  background: linear-gradient(90deg, var(--green-start), var(--green-end));
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .category-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .category-slider {
    grid-template-columns: 1fr;
  }

  .category-card img {
    height: 260px;
  }
}

.shop-category-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 300px;
}

.shop-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.shop-category-card:hover img {
  transform: scale(1.08);
}

.shop-category-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .2));
  color: #fff;
  text-align: center;
}

.shop-category-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.shop-now-btn {
  padding: 10px 22px;
  border-radius: 25px;
  background: #28a745;
  font-weight: 600;
}

.promo-section {
  padding: 0 16px 28px;
  max-width: 1400px;
  margin: auto;
}

.promo-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Image */
.promo-link img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover zoom (same feel as Shopify banners) */
.promo-link:hover img {
  transform: scale(1.04);
}

/* Desktop height control */
@media (min-width: 768px) {
  .promo-link {
    aspect-ratio: 1440 / 660;
  }

  .promo-link img {
    height: 100%;
  }
}

/* Mobile spacing */
@media (max-width: 767px) {
  .promo-section {
    padding-bottom: 20px;
  }
}

/* TESTIMONIAL SECTION */

.testimonial-section {
  padding: 60px 16px;
  max-width: 1400px;
  margin: auto;
}

/* HEADER */

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.testimonial-header h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

/* NAVIGATION ARROWS */

.testimonial-nav {
  display: flex;
  gap: 12px;
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-arrow::after {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.testimonial-arrow.prev::after {
  content: "‹";
}

.testimonial-arrow.next::after {
  content: "›";
}

.testimonial-arrow:hover {
  background: var(--color-primary-start);
  border-color: var(--color-primary-start);
}

.testimonial-arrow:hover::after {
  color: #fff;
}

/* SWIPER */

.testimonialSwiper {
  padding-bottom: 10px;
}

.testimonialSwiper .swiper-slide {
  height: auto;
  display: flex;
}

/* TESTIMONIAL CARD */

.testimonial-item {
  display: flex;
  gap: 24px;
  width: 100%;
  align-items: stretch;
  /* Equal height */
}

/* IMAGE SIDE */

.testimonial-image {
  width: 50%;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* CONTENT SIDE */

.testimonial-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* TEXT BOX */

.testimonial-box {
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 22px;
  background: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* AUTHOR */

.testimonial-author {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* STARS */

.testimonial-rating {
  color: #f5a623;
  margin-bottom: 12px;
  font-size: 18px;
}

/* TEXT */

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* PRODUCT CARD */

.testimonial-product {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  background: #fff;
  margin-top: 16px;
}

.testimonial-product:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.testimonial-product img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
}

.product-name {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.product-price {
  font-size: 14px;
  color: var(--color-primary-end);
  font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 1023px) {

  .testimonial-header {
    margin-bottom: 25px;
  }

  .testimonial-item {
    flex-direction: column;
  }

  .testimonial-image,
  .testimonial-content {
    width: 100%;
  }

  .testimonial-image img {
    height: auto;
  }

  .testimonial-nav {
    display: none;
  }

}

/* PROMOTION SECTION */

.promo-section {
  padding-bottom: 28px;
}

/* Banner */
.promo-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  border-radius: 12px;
}

/* Desktop rounding */
@media (min-width: 1024px) {
  .promo-banner {
    border-radius: 10px;
  }
}

/* Image */
.promo-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Desktop height */
@media (min-width: 768px) {
  .promo-image img {
    height: 600px;
  }
}

/* Mobile height */
@media (max-width: 767px) {
  .promo-image img {
    height: 420px;
  }
}

/* Overlay */
.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

/* Content Wrapper */
.promo-content-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0 20px;
}

/* Content Box */
.promo-content {
  width: 92%;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.94);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
}

/* Text */
.promo-content h2 {
  font-size: 32px;
  margin-bottom: 12px;
  font-weight: 600;
}

.promo-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

/* Button */
.promo-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: var(--color-primary-start);
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  background: #144a18;
  transform: translateY(-2px);
}

/* ANIMATION */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

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

/* RESPONSIVE TEXT */

@media (max-width: 768px) {
  .promo-content {
    padding: 24px;
  }

  .promo-content h2 {
    font-size: 24px;
  }

  .promo-content p {
    font-size: 14px;
  }
}

/* WRAPPER */

.testimonial-wrapper {
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.testimonial-heading {
  font-size: 32px;
  margin-bottom: 70px;
  font-weight: 600;
}

/* CONTAINER */

.testimonial-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

/* SWIPER */

.testimonialSwiper3 {
  width: 100%;
  padding: 40px 0;
}

.testimonialSwiper3 .swiper-slide {
  display: flex;
  justify-content: center;
  transition: all 0.5s ease;
  opacity: 0.5;
  transform: scale(0.85);
  filter: blur(2px);
}

/* LEFT + RIGHT visible but faded */
.testimonialSwiper3 .swiper-slide-prev,
.testimonialSwiper3 .swiper-slide-next {
  opacity: 0.9;
  transform: scale(0.9);
  filter: blur(0.8px);
}

/* CENTER ACTIVE */
.testimonialSwiper3 .swiper-slide-active {
  opacity: 1;
  transform: scale(1.05) translateY(-25px);
  filter: blur(0);
  z-index: 2;
}

/* CARD */

.testimonial-card {
  background: #f3f7ee;
  border-radius: 18px;
  padding: 40px 35px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
}

.stars {
  color: var(--color-primary-end);
  margin-bottom: 15px;
  font-size: 18px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #333;
}

.author {
  font-weight: 600;
  font-size: 14px;
}

/* NAV BUTTONS */

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #e0e0e0;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s ease;
}

.nav-btn:hover {
  background: var(--color-primary-end);
  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .testimonialSwiper3 .swiper-slide {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }

  .testimonialSwiper3 .swiper-slide-active {
    transform: scale(1);
  }

}

/* RICH TEXT SECTION */

.rich-text-section {
  padding-top: 32px;
  padding-bottom: 0;
}

/* CENTERED CONTAINER */
.rich-text-container {
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

/* HEADING */
.rich-text-heading {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #111;
}

/* CONTENT */
.rich-text-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* DESKTOP */
@media (min-width: 768px) {
  .rich-text-section {
    padding-top: 40px;
  }

  .rich-text-heading {
    font-size: 2rem;
  }

  .rich-text-content p {
    font-size: 16px;
  }
}

/* FEATURE ICON SECTION */

.feature-icons {
  width: 100%;
  background: #fff;
  padding: 30px 16px;
}

/* GRID CONTAINER */

.feature-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* SINGLE ITEM */

.feature-item {
  text-align: center;
  padding: 20px 10px;
  position: relative;
  transition: all 0.3s ease;
}

/* ICON */

.feature-icon-1 {
  font-size: 40px;
  margin-bottom: 10px;
  color: var(--color-primary-end);
  transition: all 0.3s ease;
}

/* Hover */

.feature-item:hover .feature-icon-1 {
  transform: scale(1.1);
  color: var(--color-primary-start);
}

/* TEXT */

.feature-item p {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  color: #222;
}

/* TABLET */

@media (min-width: 768px) {

  .feature-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .feature-icon-1 {
    font-size: 44px;
  }

}

/* LAPTOP */

@media (min-width: 1024px) {

  .feature-container {
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
  }

  .feature-item {
    padding: 25px 10px;
  }

  /* Divider lines */

  .feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: #e5e5e5;
  }

}

/* LARGE DESKTOP */

@media (min-width: 1280px) {

  .feature-icon-1 {
    font-size: 48px;
  }

  .feature-item p {
    font-size: 16px;
  }

}

/* Modern Footer*/
.modern-footer {
  background: #0f172a;
  color: #cbd5e1;
  font-family: 'Inter', sans-serif;
}

/* Newsletter*/
.newsletter-modern {
  background: linear-gradient(135deg, #8bbf7a, #6fa75d);
}

.newsletter-modern h2 {
  font-size: 28px;
}

.newsletter-form-modern input {
  border-radius: 50px;
  padding: 14px 20px;
  border: none;
}

.newsletter-form-modern button {
  border-radius: 50px;
  padding: 12px 25px;
  font-weight: 600;
  transition: 0.3s ease;
}

.newsletter-form-modern button:hover {
  transform: translateY(-2px);
}

/* Footer Main*/
.footer-main {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #8bbf7a;
  display: block;
  margin-top: 8px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #8bbf7a;
  padding-left: 6px;
}

/* Social Icons*/
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 5px;
  border-radius: 50%;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #8bbf7a;
  transform: translateY(-4px);
}

/* Bottom*/
.footer-bottom {
  background: #0b1220;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* BLOG CARD */

.blog-header {
  margin-bottom: 50px;
}

.blog-heading {
  font-size: 34px;
  font-weight: 700;
}

.view-all {
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid #000;
  color: #000;
}

/* Card */
.blog-card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

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

.blog-img {
  position: relative;
  height: 220px;
  display: block;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.1);
}

.blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

/* Content */
.blog-content {
  padding: 20px;
}

.blog-date {
  font-size: 12px;
  color: #888;
  display: block;
  margin-bottom: 8px;
}

.blog-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  position: relative;
}

.read-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #000;
  transition: 0.3s;
}

.read-more:hover::after {
  width: 100%;
}

/* Swiper arrows */
.swiper-button-prev,
.swiper-button-next {
  color: #000;
}

/* HEADER */

/* HEADER */
.main-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

/* LOGO */
.logo img {
  height: 50px;
}

/* NAV */
.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-item {
  font-size: 15px;
  font-weight: 500;
}

.nav-item>a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  gap: 6px;
}

/*  HEADER  */

.main-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9;
  border-bottom: 1px solid #eee;
}

.header-inner {
  position: relative;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

/* NAV */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-item {
  position: relative;
  /* IMPORTANT */
  font-size: 15px;
  font-weight: 500;
}

.nav-item>a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #1f2937;
}

/* MODERN MEGA MENU */

.has-mega {
  position: static;
  /* Full width dropdown */
}

/* DROPDOWN PANEL */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 50px 0;
  border-top: 1px solid #eee;

  /* Modern glass depth */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);

  /* Animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(25px);
  transition: all 0.35s cubic-bezier(.23, 1, .32, 1);

  max-height: 80vh;
  overflow-y: auto;
  z-index: 999;
}

/* SHOW */
.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* GRID CONTAINER */
.mega-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 28px;
}

/* CARD */
.mega-item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #f1f1f1;
}

.mega-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* IMAGE WRAPPER */
.mega-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.4s ease;
  border-bottom: 1px solid #f3f3f3;
}

.mega-item:hover img {
  transform: scale(1.08);
}

/* TITLE */
.mega-item span {
  display: block;
  padding: 14px 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  transition: 0.3s;
}

.mega-item:hover span {
  color: #16a34a;
  /* herbal green touch */
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 20px;
    transition: 0.3s;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .mega-menu {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  .nav-item.active .mega-menu {
    display: block;
  }
}

.nav-item {
  position: static;
  /* IMPORTANT */
}

/*  MOBILE SIDEBAR  */

.mobile-panels {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transition: 0.4s ease;
  overflow: hidden;
}

.mobile-panels.active {
  left: 0;
}

.mobile-panel {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: 0.4s ease;
  overflow-y: auto;
}

.mobile-panel.active {
  left: 0;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.mobile-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.mobile-menu-list,
.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li,
.mobile-submenu li {
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-close-btn,
.back-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Hero full width fix */
.hero-slider {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-slider .splide {
  width: 100%;
}

.hero-slider .splide__track {
  margin: 0 !important;
  padding: 0 !important;
}

.hero-slider .splide__list {
  margin: 0;
  padding: 0;
}

.hero-slider .splide__slide {
  margin: 0 !important;
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Trigger */
.search-open-btn {
  padding: 10px 18px;
  border-radius: 30px;
  border: none;
  background: #f3f3f3;
  cursor: pointer;
}

/* Modal OVER Header */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;

  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease;

  z-index: 999999;
  border-bottom: 1px solid #eee;
}

/* ACTIVE STATE */
.search-modal.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Container */
.search-container {
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  position: relative;
}

/* Close Button Right End */
.search-close {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  opacity: 0.6;
}

.search-close:hover {
  opacity: 1;
}

/* Form */
.search-form {
  position: relative;
}

/* Input */
.search-form input {
  width: 100%;
  height: 60px;
  padding: 0 110px 0 20px;
  font-size: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}

.search-form input:focus {
  border-color: #000;
}

/* Icons at Right End */
.search-btn,
.mic-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.6;
}

.search-btn {
  right: 15px;
}

.mic-btn {
  right: 55px;
}

.search-btn:hover,
.mic-btn:hover {
  opacity: 1;
}

/* Search Results Dropdown */
.search-result {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  max-height: 400px;
  overflow-y: auto;
  display: none;
  z-index: 999999;
}

.search-result div {
  padding: 12px 15px;
  cursor: pointer;
}

.search-result div:hover {
  background: #f5f5f5;
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .search-form input {
    height: 50px;
    font-size: 16px;
  }
}

/* Search Results */
.search-section-title {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 15px;
  background: #f9f9f9;
  color: #777;
  text-transform: uppercase;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #f3f3f3;
}

.search-item img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 6px;
}

.search-item p {
  margin: 0;
  font-size: 14px;
}

.search-item span {
  font-size: 12px;
  color: #777;
}

.no-image-icon {
  width: 45px;
  height: 45px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.no-result {
  padding: 15px;
  text-align: center;
  font-size: 14px;
  color: #888;
}

/* LEFT IMAGE */
.product-gallery {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.main-image {
  width: 100%;
  max-height: 550px;
  object-fit: contain;
}

/* RIGHT DETAILS */
.product-details h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitle {
  color: #555;
  margin-bottom: 20px;
}

/* PRICE */
.price-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.price {
  font-size: 28px;
  font-weight: bold;
}

.compare {
  text-decoration: line-through;
  color: #888;
}

/* REWARD STRIP */
.reward-strip {
  background: #eef7ee;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

/* QUANTITY */
.quantity-row {
  display: inline-flex;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 25px;
}

.quantity-row button {
  padding: 10px 15px;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
}

.quantity-row input {
  width: 60px;
  text-align: center;
  border: none;
}

/* BUTTONS */
.button-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.button-row .add-cart-btn {
  flex: 1;
  background: #f37021;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button-row .buy-now {
  flex: 1;
  background: #2f5d26;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button-row .qty-box {
  flex: 1;
}

/* Main Qty Container */
.button-row .qty-box .qty {
  flex: 1;
  background: var(--color-primary-start);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  font-size: 14px;
}

/* Buttons */
.button-row .qty-box .qty button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: 0.2s ease;
}

/* Hover Effect */
.button-row .qty-box .qty button:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* Quantity Number */
.button-row .qty-box .qty-count {
  font-weight: 600;
  font-size: 14px;
}


/* STOCK */
.stock {
  color: #2f5d26;
  margin-bottom: 25px;
}

/* DELIVERY CARD */
.delivery-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  margin-bottom: 30px;
}

.delivery-card h4 {
  margin-bottom: 10px;
}

.delivery-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.change-pin {
  background: none;
  border: none;
  color: #f37021;
  cursor: pointer;
}

/* MEDIA LOGOS */
.media-logos {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

.media-logos img {
  height: 35px;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .product-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/*  PRODUCT SECTION  */

.product-wrapper {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 60px;
}

.product-gallery {
  flex: 1;
}

.main-image {
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
}

.product-details {
  flex: 1;
}

.product-details h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitle {
  color: #555;
  margin-bottom: 15px;
}

.price-box {
  margin: 10px 0 20px;
}

.price {
  font-size: 28px;
  font-weight: 700;
}

.compare {
  margin-left: 10px;
  text-decoration: line-through;
  color: #999;
}

.reward-strip {
  background: #eef7ee;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.quantity-row {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  width: 120px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.quantity-row button {
  border: none;
  background: none;
  padding: 8px 12px;
  font-size: 18px;
  cursor: pointer;
}

.quantity-row input {
  width: 40px;
  border: none;
  text-align: center;
}

.button-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.stock {
  color: #2e5d2e;
  margin-bottom: 20px;
}

.delivery-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.delivery-info {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.change-pin {
  background: none;
  border: none;
  color: #f26f21;
  cursor: pointer;
}

.media-logos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.media-logos img {
  height: 35px;
}

/*  FREQUENTLY BOUGHT  */

.fbt {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 5%;
}

.fbt h2 {
  margin-bottom: 25px;
}

.fbt-row {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

.fbt-product {
  text-align: center;
}

.fbt-product img {
  width: 120px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
}

.total-box {
  margin-top: 20px;
}

.add-selected {
  margin-top: 15px;
  background: #f26f21;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/*  TOP BENEFITS  */

.benefits {
  padding: 60px 5%;
  background: #fff;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 40px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.benefit-card img {
  width: 100%;
  border-radius: 12px;
}

/*  STICKY BAR  */

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.sticky-bar button {
  background: #f26f21;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
}

/*  RESPONSIVE  */

@media (max-width: 992px) {
  .product-wrapper {
    flex-direction: column;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .button-row {
    flex-direction: column;
  }
}

.benefits-section {
  padding: 60px 20px;
  background: #f8f8f8;
}

.benefits-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
}

.benefits-wrapper {
  position: relative;
  overflow: hidden;
}

.benefits-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.benefit-card {
  min-width: 30%;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
}

.benefit-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.4;
}

/* Arrows */
.benefit-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Progress */
.progress-bar {
  height: 6px;
  background: #ddd;
  margin-top: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 0%;
  background: #2f5d2f;
  transition: width 0.4s ease;
}

/* Tablet */
@media (max-width: 1024px) {
  .benefit-card {
    min-width: 50%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .benefit-card {
    min-width: 50%;
  }
}

/* SECTION BACKGROUND */
.direction-section {
  background: #f3f3f3;
  padding: 80px 40px;
}

/* CENTER CONTAINER */
.direction-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.direction-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
}

/* GRID */
.direction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.direction-card {
  background: #e6e9e3;
  padding: 25px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  transition: 0.3s ease;
}

/* HOVER EFFECT (soft like screenshot) */
.direction-card:hover {
  background: #dde1da;
}

/* ICON */
.direction-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background: #f5f6f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.direction-icon img {
  width: 35px;
  height: 35px;
}

/* TEXT */
.direction-card p {
  font-size: 14px;
  font-weight: 400;
  color: #222;
  line-height: 1;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .direction-grid {
    grid-template-columns: 1fr;
  }

  .direction-title {
    font-size: 32px;
  }
}

/* SECTION STYLING */

.ingredients-section {
  padding: 60px 0;
  background: #f5f5f5;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 60px;
}

/* HORIZONTAL SCROLL WRAPPER */

.ingredients-scroll {
  display: flex;
  overflow-x: auto;
  gap: 60px;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

/* Hide default scrollbar for modern look */
.ingredients-scroll::-webkit-scrollbar {
  height: 6px;
}

.ingredients-scroll::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 10px;
}

.ingredients-scroll::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 10px;
}

/* CARD DESIGN */

.ingredient-card {
  flex: 0 0 auto;
  width: 220px;
  text-align: center;
  position: relative;
}

/* Vertical Divider */
.ingredient-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  height: 120px;
  width: 1px;
  background: #ddd;
}

.ingredient-card img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.ingredient-card img:hover {
  transform: scale(1.05);
}

.ingredient-card h3 {
  font-size: 20px;
  font-weight: 600;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 1024px) {
  .section-title {
    font-size: 28px;
  }

  .ingredient-card {
    width: 180px;
  }

  .ingredient-card img {
    width: 180px;
    height: 180px;
  }

  .ingredient-card:not(:last-child)::after {
    right: -30px;
    height: 100px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .ingredients-scroll {
    gap: 30px;
  }

  .ingredient-card {
    width: 150px;
  }

  .ingredient-card img {
    width: 150px;
    height: 150px;
    border-radius: 12px;
  }

  .ingredient-card h3 {
    font-size: 16px;
  }

  .ingredient-card:not(:last-child)::after {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .ingredient-card {
    width: 130px;
  }

  .ingredient-card img {
    width: 130px;
    height: 130px;
  }
}

/*  SECTION  */

.benefits-section {
  padding: 60px 0;
  background: #fff;
}

.benefits-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.benefits-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

/*  SLIDER  */

.benefits-slider {
  position: relative;
  display: flex;
  align-items: center;
}

.benefits-viewport {
  overflow: hidden;
  width: 100%;
}

.benefits-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease;
}

/*  CARD  */

.benefit-card {
  flex: 0 0 25%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.benefit-image {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.benefit-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transition: 0.4s ease;
}

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

.benefit-card p {
  padding: 18px 15px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

/*  ARROWS  */

.benefit-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: none;
  font-size: 22px;
}

.benefit-arrow:hover {
  background: #f5f5f5;
}

/*  PROGRESS  */

.benefits-progress {
  height: 4px;
  background: #eee;
  margin-top: 30px;
  border-radius: 4px;
  overflow: hidden;
}

.benefits-progress-bar {
  height: 100%;
  width: 0%;
  background: #222;
  transition: 0.3s ease;
}

/*  RESPONSIVE  */

@media (max-width: 1024px) {
  .benefit-card {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .benefit-card {
    flex: 0 0 50%;
  }

  .benefit-card p {
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .benefit-arrow {
    display: block;
  }
}

/*  VIDEO SECTION  */

.video-section {
  padding: 40px 0;
  background: #fff;
}

.video-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

/* 16:9 Ratio Container */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
  overflow: hidden;
  border-radius: 12px;
}

/* Thumbnail */
.video-thumbnail {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  cursor: pointer;
  transition: 0.4s ease;
  z-index: 2;
}

/* Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none;
  font-size: 32px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 3;
  transition: 0.3s ease;
}

.video-play-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Video */
.video-element {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
}

/* Hover Effect */
.video-wrapper:hover .video-thumbnail {
  transform: scale(1.05);
}

/*  RESPONSIVE  */

@media (max-width: 768px) {
  .video-wrapper {
    border-radius: 8px;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}

/*  SECTION  */

.product-details-section {
  padding: 60px 0;
  background: #fff;
}

/*  HEADING  */

.product-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

/*  DESCRIPTION  */

.product-description-wrapper {
  position: relative;
}

.product-description {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  overflow: hidden;
}

.product-description ul {
  padding-left: 20px;
  margin: 10px 0;
}

.product-description li {
  margin-bottom: 8px;
}

/* Fade Effect */
.fade-overlay {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
  transition: 0.3s;
}

/*  BUTTON  */

.read-more-wrapper {
  text-align: center;
  margin-top: 20px;
}

.read-more-btn {
  border: 1px solid #222;
  background: transparent;
  padding: 10px 25px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.read-more-btn:hover {
  background: #222;
  color: #fff;
}

/*  EXPANDED STATE  */

.product-description.expanded {
  max-height: 2000px;
}

.product-description.expanded+.fade-overlay {
  display: none;
}

/*  RESPONSIVE  */

@media (max-width: 768px) {
  .product-title {
    font-size: 26px;
  }

  .product-description {
    font-size: 14px;
  }
}

.reviews-section {
  padding: 70px 20px;
  background: #f4f7f2;
}

.reviews-container {
  max-width: 1200px;
  margin: auto;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.write-review-btn {
  background: #7fb06e;
  color: white;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.write-review-btn:hover {
  background: #68995a;
  transform: translateY(-2px);
}

.rating-breakdown {
  margin-bottom: 40px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.bar {
  flex: 1;
  height: 8px;
  background: #ddd;
  border-radius: 20px;
}

.fill {
  height: 100%;
  background: #7fb06e;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-card {
  background: white;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.review-modal-content {
  background: white;
  padding: 35px;
  width: 400px;
  border-radius: 15px;
}

.review-modal-content input,
.review-modal-content select,
.review-modal-content textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.submit-review-btn {
  width: 100%;
  background: #7fb06e;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
}

/* BUTTON */

.btn-primary {
  background: #8bbf7a;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  width: 20%;
}

.btn-primary:hover {
  background: #79a967;
}

.btn-link {
  color: var(--accent);
}

.btn-link:hover {
  text-decoration: underline;
  color: var(--color-primary-end);
}

.show-more-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/*  SECTION  */

.why-section {
  background: #ffffff;
  padding: 40px 20px;
}

.why-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/*  HEADING  */

.why-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  line-height: 1.3;
}

/*  SUBTITLE  */

.why-subtitle {
  font-size: 14px;
  letter-spacing: 1px;
  color: #444;
  line-height: 1.6;
}

/*  RESPONSIVE  */

@media (min-width: 768px) {
  .why-section {
    padding: 50px 20px;
  }

  .why-title {
    font-size: 32px;
  }

  .why-subtitle {
    font-size: 16px;
  }
}

.features-section {
  padding: 40px 20px;
  background: #fff;
}

.features-wrapper {
  overflow: hidden;
  position: relative;
}

.features-track {
  display: flex;
  transition: transform 0.4s ease;
}

.feature-item {
  flex: 0 0 16.66%;
  text-align: center;
  padding: 25px 10px;
  position: relative;
}

.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: #e5e5e5;
}

.feature-item img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;
  font-weight: 500;
}

/* Progress bar (mobile only) */
.mobile-progress {
  display: none;
  height: 4px;
  background: #ddd;
  margin-top: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #2f5d2f;
  transition: width 0.3s ease;
}

/* Tablet */
@media (max-width: 1024px) {
  .feature-item {
    flex: 0 0 50%;
  }

  .feature-item::after {
    display: none;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .features-track {
    gap: 0;
  }

  .feature-item {
    flex: 0 0 50%;
  }

  .mobile-progress {
    display: block;
  }
}

/*  STICKY CONTAINER  */

.sticky-add-to-cart {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 900px;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  z-index: 999;
  padding: 12px 18px;
}

/*  INNER FLEX  */

.sticky-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

/*  PRODUCT INFO  */

.sticky-product {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.sticky-product img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

/*  TEXT  */

.sticky-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #222;
}

.sticky-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sale-price {
  font-weight: 600;
  font-size: 15px;
  color: #000;
}

.compare-price {
  font-size: 13px;
  text-decoration: line-through;
  color: #777;
}

/*  BUTTON  */

.sticky-btn {
  padding: 10px 25px;
  background: #8bbf7a;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
  min-width: 140px;
}

.sticky-btn:hover {
  background: #79a967;
}

/*  RESPONSIVE  */

@media (max-width: 768px) {
  .sticky-container {
    flex-direction: column;
    align-items: stretch;
  }

  .sticky-btn {
    width: 100%;
  }

  .sticky-add-to-cart {
    bottom: 0;
    border-radius: 12px 12px 0 0;
  }
}

/*  FOOTER  */

.site-footer {
  background: #faf8f8;
  color: #ccc;
  padding: 20px 15px;
}

/*  FOOTER BOTTOM  */

.footer-bottom {
  text-align: center;
  font-size: 14px;
}

.footer-bottom a {
  color: #8bbf7a;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/*  RESPONSIVE  */

@media (max-width: 768px) {
  .footer-bottom {
    font-size: 13px;
  }
}

.faq-section {
  background: linear-gradient(135deg, #f8f9fa, #eef2f7);
}

.faq-title {
  font-size: 36px;
  letter-spacing: 1px;
}

.faq-item {
  background: #ffffff;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: transparent;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all 0.4s ease;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px 20px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Responsive */
@media(max-width: 992px) {
  .faq-title {
    font-size: 28px;
  }
}

.product-gallery {
  width: 100%;
  position: relative;
}

/* Save Badge */
.save-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e6f5e6;
  color: var(--color-primary-end);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
}

/* Main Slider */
.mainSwiper {
  border-radius: 18px;
  overflow: hidden;
}

.main-image {
  width: 100%;
  display: block;
  border-radius: 18px;
}

/* Arrows */
.gallery-btn {
  color: #fff;
}

.swiper-button-prev,
.swiper-button-next {
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
}

/* Thumbnail Slider */
.thumbSwiper {
  margin-top: 18px;
}

.thumbSwiper .swiper-slide {
  width: 90px !important;
  height: 90px;
  opacity: 0.6;
  cursor: pointer;
}

.thumbSwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: 0.3s;
}

.thumbSwiper .swiper-slide-thumb-active .thumb {
  border: 2px solid var(--color-primary-end);
}

/* Responsive */
@media (max-width: 768px) {
  .thumbSwiper .swiper-slide {
    width: 70px !important;
    height: 70px;
  }
}

/* = MINI CART DRAWER
================================ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9998;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* DRAWER */
.mini-cart {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background: #ffffff;
  transition: right 0.4s cubic-bezier(.77, 0, .18, 1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mini-cart.active {
  right: 0;
}

@media (max-width:768px) {
  .mini-cart {
    width: 100%;
    right: -100%;
  }
}

/* HEADER */
.cart-header {
  padding: 18px;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* SCROLL AREA */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

/* CART ITEM */
.mini-cart-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #fafafa;
  margin-bottom: 15px;
  transition: 0.2s;
}

.mini-cart-item:hover {
  background: #f1f1f1;
}

.item-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
}

.title {
  font-size: 14px;
  font-weight: 600;
}

.price {
  font-weight: 600;
  color: #2f6f2f;
}

.old {
  text-decoration: line-through;
  font-size: 12px;
  color: #aaa;
  margin-left: 6px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qty button {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.qty button:hover {
  background: #2f6f2f;
  color: #fff;
}

/* EMPTY STATE FIXED */
.mini-cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #888;
}

.mini-cart-empty img {
  height: 150px;
  opacity: 0.7;
  margin-bottom: 15px;
}

/* FOOTER */
.cart-footer {
  border-top: 1px solid #eee;
  padding: 18px;
  background: #fff;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.buy-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #2f6f2f, #3d8b3d);
  border: none;
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(47, 111, 47, 0.25);
}

/* ========
   OVERLAY
======== */
.login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  z-index: 98;
}

/* ========
   WRAPPER
======== */
.login-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 760px;
  max-width: 95%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 99;
  display: none;
}

/* ========
   CLOSE BUTTON
======== */
.login-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}

/* ========
   LEFT SIDE
======== */
.login-left {
  flex: 1;
  background: linear-gradient(135deg, var(--primary), #1f4d1f);
  color: #fff;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-logo {
  width: 120px;
  margin-bottom: 24px;
}

.login-left h2 {
  font-size: 22px;
  line-height: 1.4;
}

/* ========
   RIGHT SIDE
======== */
.login-right {
  flex: 1;
  padding: 36px 30px;
}

.login-right h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.login-right h3 span {
  color: #FF6B00;
}

.subtitle {
  color: #777;
  margin-bottom: 20px;
}

/* ========
   PHONE INPUT
======== */
.phone-box {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: visible;
}

.country-dropdown {
  position: relative;
}

.country-dropdown button {
  background: #f3f3f3;
  border: none;
  padding: 12px 14px;
  font-weight: 600;
  cursor: pointer;
}

.dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  max-height: 300px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  z-index: 999;
}

.dropdown-list input {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #eee;
  outline: none;
}

.dropdown-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-list li {
  padding: 10px;
  cursor: pointer;
}

.dropdown-list li:hover {
  background: #f5f5f5;
}

.phone-box input {
  border: none;
  padding: 12px;
  flex: 1;
  font-size: 15px;
  outline: none;
  border: 1px solid #235422;
}

/* ========
   BUTTON
======== */
.login-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.25s;
}

.login-btn:hover {
  background: var(--primary-dark);
}

/* ========
   TERMS
======== */
.login-terms {
  font-size: 12px;
  color: #888;
  margin-top: 16px;
}

.login-terms a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* ========
   MOBILE
======== */
@media (max-width: 768px) {

  .login-wrapper {
    flex-direction: column;
    width: 95%;
  }

  .login-left {
    text-align: center;
    padding: 28px;
  }

  .login-right {
    padding: 26px;
  }

}

/* =MODERN CHECKOUT DESIGN
================================ */

.checkout-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

/* GRID */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
}

/* LEFT SIDE */
.checkout-left {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* HEADINGS */
.section-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* FORM */
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
  outline: none;
}

.form-row {
  display: flex;
  gap: 20px;
}

/* PAYMENT */
.payment-option {
  border: 1px solid #e2e8f0;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: 0.3s;
}

.payment-option:hover {
  border-color: var(--primary);
  background: #fff7ed;
}

/* RIGHT SIDE */
.checkout-right {
  position: sticky;
  top: 20px;
}

/* ORDER CARD */
.order-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.summary-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* PRODUCT CARD */
.checkout-product {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}

.product-image {
  position: relative;
  width: 70px;
  height: 70px;
}

.product-image img {
  width: 100%;
  border-radius: 10px;
}

.qty-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 50px;
}

.product-name {
  font-weight: 600;
}

.product-variant {
  font-size: 13px;
  color: #64748b;
  margin: 4px 0;
}

.product-price {
  font-weight: 600;
}

.product-price span {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 13px;
  margin-left: 6px;
}

/* COUPON */
.coupon-box {
  display: flex;
  margin: 20px 0;
  gap: 10px;
}

.coupon-box input {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.coupon-box button {
  padding: 12px 18px;
  border: none;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

/* SUMMARY */
.summary-details {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.summary-row.total {
  font-size: 16px;
  font-weight: 700;
}

.free {
  color: green;
  font-weight: 600;
}

/* BUTTON */
.place-order-btn {
  width: 100%;
  margin-top: 20px;
  padding: 15px;
  background: linear-gradient(90deg, #f97316, #fb923c);
  border: none;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.place-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-right {
    position: static;
    margin-top: 30px;
  }

  .form-row {
    flex-direction: column;
  }

}

/* =============================
   MODERN PAYMENT METHODS
============================= */

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.payment-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.payment-card:hover {
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.payment-card.active {
  border-color: var(--primary);
  background: #fff7ed;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.15);
}

.payment-icon {
  font-size: 22px;
  color: var(--primary);
  width: 40px;
  text-align: center;
}

.payment-info {
  flex: 1;
  padding-left: 15px;
}

.payment-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.payment-desc {
  font-size: 13px;
  color: #64748b;
}

.payment-check {
  font-size: 20px;
  color: var(--primary);
  opacity: 0;
  transition: 0.3s;
}

.payment-card.active .payment-check {
  opacity: 1;
}

/* Mobile */
@media(max-width: 576px) {
  .payment-card {
    padding: 15px;
  }
}

/* =============================
   MODERN ABOUT SECTION
============================= */

.about-modern {
  padding: 100px 20px;
  background: #f8f7f3;
}

.about-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-badge {
  display: inline-block;
  background: #e8f1e5;
  color: var(--primary);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 18px;
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: var(--primary);
}

.about-desc {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.point {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.point i {
  font-size: 20px;
  color: var(--primary);
  margin-top: 5px;
}

.point h4 {
  margin-bottom: 5px;
}

.point p {
  font-size: 14px;
  color: #777;
}

.about-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #2f6b3d;
}

/* Image */

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* =============================
   STATS SECTION
============================= */

.about-stats {
  background: var(--primary);
  padding: 70px 20px;
  color: #fff;
}

.stats-grid {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 30px;
}

.stat-box h3 {
  font-size: 36px;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 15px;
  opacity: 0.9;
}

/* =============================
   MISSION SECTION
============================= */

.mission-section {
  padding: 100px 20px;
  background: #fff;
}

.mission-grid {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-card {
  padding: 40px;
  background: #f9f9f9;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.mission-card i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 15px;
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT SECTION*/

.contact-section {
  background: #f5f6f4;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

/* GRID*/

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* LEFT FORM*/

.contact-left {
  padding: 50px;
}

.contact-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}

.contact-title {
  font-size: 34px;
  margin: 12px 0;
}

.contact-desc {
  color: #666;
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

textarea {
  margin-bottom: 18px;
  resize: none;
}

.contact-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: var(--primary-dark);
}

/* RIGHT PANEL*/

.contact-right {
  background: linear-gradient(135deg, var(--primary), #1e4d1e);
  color: #fff;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  position: relative;
}

.contact-right-inner {
  width: 100%;
}

.contact-right h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-intro {
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.6;
}

/* INFO ITEMS */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-item {
  display: flex;
  gap: 12px;
}

.info-icon {
  font-size: 20px;
}

.info-item strong {
  display: block;
  font-size: 15px;
}

.info-item p {
  margin: 3px 0 0;
  opacity: 0.9;
}

/* SUPPORT BOX */

.support-box {
  margin-top: 25px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

/* CALL BUTTON */

.contact-call-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.contact-call-btn:hover {
  background: #eee;
}

/* MAP*/

.contact-map {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* RESPONSIVE*/

@media (max-width: 992px) {

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-left,
  .contact-right {
    padding: 35px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 28px;
  }
}

/* PAGE */
.orders-section {
  background: #f4f6f9;
  padding: 35px 15px;
  font-family: 'Inter', sans-serif;
}

.page-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ORDER CARD */
.order-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: 0.2s ease;
}

.order-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.order-number {
  font-weight: 600;
  font-size: 14px;
}

.order-date {
  font-size: 12px;
  color: #888;
}

/* STATUS */
.order-status {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.delivered {
  background: #eafaf1;
  color: #27ae60;
}

.pending {
  background: #fff4db;
  color: #b9770e;
}

.cancelled {
  background: #fdecec;
  color: #c0392b;
}

/* BODY */
.order-body {
  padding: 12px 16px;
}

/* PRODUCT LIST */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-row img {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  object-fit: cover;
}

.product-details {
  flex: 1;
}

.product-details h4 {
  font-size: 13px;
  margin: 0 0 3px;
  font-weight: 600;
}

.product-details p {
  font-size: 12px;
  margin: 0;
  color: #777;
}

.price {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

/* SUMMARY */
.order-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed #eee;
  font-size: 13px;
}

.order-summary strong {
  font-size: 15px;
}

/* FOOTER */
.order-footer {
  padding: 10px 16px 14px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* BUTTONS */
.btn-outline {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 6px;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: #fff;
  transition: 0.2s;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .order-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .order-footer {
    justify-content: flex-start;
  }
}

/* PAGE*/

.profile-section {
  background: #f5f6f4;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.profile-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
}

/* SIDEBAR*/

.profile-sidebar {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.avatar-wrapper {
  width: 130px;
  height: 130px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
}

.avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-name {
  margin-top: 16px;
  font-weight: 700;
}

.user-email {
  color: #777;
  font-size: 14px;
}

.avatar-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* CONTENT CARDS*/

.profile-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card-box {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.card-box h3 {
  margin-bottom: 20px;
}

/* FORM*/

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.full {
  width: 100%;
  margin-top: 18px;
}

/* BUTTONS*/

.btn-main,
.btn-outline {
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: 0.2s;
}

.btn-main {
  background: var(--primary);
  color: #fff;
}

.btn-main:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* CAMERA MODAL*/

.camera-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.camera-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

#cameraStream {
  width: 320px;
  border-radius: 10px;
}

.camera-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* RESPONSIVE*/

@media (max-width: 900px) {

  .profile-container {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

}

/* TRACK ORDER SECTION*/

.track-section {
  background: #f5f6f4;
  padding: 70px 20px;
  font-family: Arial, sans-serif;
}

.track-container {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  text-align: center;
}

/* Title */

.track-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.track-subtitle {
  color: #777;
  margin-bottom: 30px;
}

/* Form */

.track-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.track-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.field-group label {
  font-weight: 600;
  margin-bottom: 6px;
}

.field-group input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: 0.2s;
}

.field-group input:focus {
  outline: none;
  border-color: var(--primary);
}

/* Button */

.track-btn {
  margin-top: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.track-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* RESPONSIVE*/

@media (max-width: 768px) {

  .track-container {
    padding: 28px 18px;
  }

  .track-fields {
    grid-template-columns: 1fr;
  }

  .track-title {
    font-size: 24px;
  }

}

/* ROOT THEME COLORS*/


/* PAGE*/

.complaint-section {
  background: linear-gradient(180deg, #f7f8f6, #eef2ec);
  padding: 70px 20px;
  font-family: "Inter", Arial, sans-serif;
}

/* GRID*/

.complaint-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
}

/* CARDS*/

.complaint-form-card,
.complaint-list-card {
  background: var(--card-bg);
  padding: 34px;
  border-radius: var(--radius);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.05),
    0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: 0.25s;
}

.complaint-form-card:hover,
.complaint-list-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.08),
    0 6px 16px rgba(0, 0, 0, 0.06);
}

/* TITLES*/

.card-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
  color: var(--text-main);
}

.complaint-list-card h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
}

/* FORM*/

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

/* Inputs */

input,
select,
textarea {
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
  background: #fafafa;
  transition: all 0.2s ease;
}

/* Focus effect */

input:focus,
select:focus,
textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47, 111, 47, 0.12);
}

/* File input */

input[type="file"] {
  padding: 10px;
  background: #fff;
}

/* Textarea */

textarea {
  resize: vertical;
}

/* BUTTON*/

.btn-main {
  background: linear-gradient(135deg, var(--primary), #3f8a3f);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 15px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(47, 111, 47, 0.25);
}

.btn-main:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 8px 20px rgba(47, 111, 47, 0.35);
}

/* RIGHT CARD*/

.no-complaints {
  margin-top: 22px;
  padding: 18px;
  border-radius: 10px;
  background: #f8faf8;
  border: 1px dashed var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* RESPONSIVE*/

@media (max-width: 900px) {

  .complaint-grid {
    grid-template-columns: 1fr;
  }

  .complaint-form-card,
  .complaint-list-card {
    padding: 24px;
  }

  .card-title {
    font-size: 24px;
  }

}

@media (max-width: 480px) {

  .complaint-section {
    padding: 50px 14px;
  }

  input,
  select,
  textarea {
    font-size: 13px;
    padding: 12px;
  }

  .btn-main {
    padding: 14px;
    font-size: 14px;
  }

}

/* SECTION*/

.feedback-section {
  background: linear-gradient(180deg, #f7f8f6, #eef2ec);
  padding: 80px 20px;
  font-family: "Inter", Arial, sans-serif;
}

/* HEADER*/

.feedback-header {
  text-align: center;
  margin-bottom: 50px;
}

.feedback-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.feedback-header p {
  color: var(--text-muted);
  font-size: 16px;
}

/* CARD*/

.feedback-card {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.06),
    0 4px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 28px;
  font-weight: 700;
}

/* FORM*/

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

/* Two-column row */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Inputs */

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 15px;
  background: #fafafa;
  transition: all 0.2s ease;
}

/* Focus */

input:focus,
select:focus,
textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47, 111, 47, 0.12);
}

/* BUTTON*/

.submit-btn {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--primary), #3f8a3f);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 6px 16px rgba(47, 111, 47, 0.25);
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* RESPONSIVE*/

@media (max-width: 768px) {

  .feedback-header h2 {
    font-size: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .feedback-card {
    padding: 24px;
  }

  .submit-btn {
    width: 100%;
  }

}

/* BLOG HERO*/

.blog-hero {
  background: linear-gradient(135deg, #eef6ee, #f8fbf8);
  padding: 80px 0 70px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 18px;
}

.blog-hero p {
  max-width: 700px;
  margin: auto;
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.6;
}

/* BLOG DETAIL*/

.blog-detail {
  padding: 60px 0;
  background: #fff;
}

/* HERO IMAGE */

.blog-hero-image img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 30px;
  object-fit: cover;
}

/* HEADER */

.blog-header {
  margin-bottom: 30px;
}

.blog-category {
  display: inline-block;
  background: #eaf4ea;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-header h2 {
  font-size: 32px;
  margin: 10px 0 14px;
  color: var(--text-main);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-light);
  font-size: 14px;
}

/* CONTENT */

.blog-content {
  line-height: 1.8;
  font-size: 17px;
  color: #2f3a2f;
}

.blog-content h3 {
  margin-top: 10px;
  margin-bottom: 14px;
  color: var(--primary-dark);
  font-size: 24px;
}

.blog-content p {
  margin-bottom: 18px;
}

.blog-content ul {
  padding-left: 20px;
  margin-bottom: 18px;
}

.blog-content li {
  margin-bottom: 8px;
}

/* INTRO PARAGRAPH */

.intro {
  font-size: 18px;
  font-weight: 500;
  color: #344734;
}

/* IMAGE BLOCK */

.blog-image-block {
  margin: 35px 0;
  text-align: center;
}

.blog-image-block img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 10px;
}

.blog-image-block span {
  font-size: 14px;
  color: var(--text-light);
}

/* RELATED BLOGS*/

.related-blogs {
  background: var(--bg-soft);
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 30px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.section-header p {
  color: var(--text-light);
}

/* SLIDER WRAPPER */

.blog-slider-wrapper {
  position: relative;
}

.blog-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* HIDE SCROLLBAR */

.blog-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */

.related-blog-card {
  min-width: 320px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.related-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.related-blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  font-size: 18px;
  margin: 10px 0;
  color: var(--text-main);
}

.card-body p {
  color: var(--text-light);
  font-size: 14px;
}

/* FOOTER */

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  font-size: 13px;
}

.card-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

/* SLIDER BUTTONS */

.slider-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: var(--primary);
  color: white;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--primary-dark);
}

/* RESPONSIVE*/

/* Tablet */

@media (max-width: 992px) {

  .blog-hero h1 {
    font-size: 32px;
  }

  .blog-header h2 {
    font-size: 26px;
  }

}

/* Mobile */

@media (max-width: 768px) {

  .blog-hero {
    padding: 60px 0;
  }

  .blog-hero h1 {
    font-size: 26px;
  }

  .blog-hero p {
    font-size: 16px;
  }

  .blog-content {
    font-size: 16px;
  }

  .blog-content h3 {
    font-size: 20px;
  }

  .related-blog-card {
    min-width: 85%;
  }

  .slider-btn {
    display: none;
  }

}

/* BLOG GRID*/

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* BLOG CARD*/

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
}

/* IMAGE*/

.blog-image {
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.06);
}

/* CONTENT*/

.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* CATEGORY */

.blog-category {
  display: inline-block;
  background: #eaf4ea;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: fit-content;
}

/* TITLE */

.blog-content h3 {
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.3;
}

/* EXCERPT */

.blog-excerpt {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* META */

.blog-meta {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

/* BUTTON*/

.blog-btn {
  margin-top: auto;
  display: inline-block;
  text-decoration: none;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s ease;
}

.blog-btn:hover {
  background: var(--primary-dark);
}

/* RESPONSIVE*/

/* Tablet */

@media (max-width: 992px) {

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Mobile */

@media (max-width: 600px) {

  .blog-section {
    padding: 60px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .blog-image img {
    height: 200px;
  }

  .blog-content h3 {
    font-size: 18px;
  }

}

/* BLOG LIST SECTION*/

.blog-list-section {
  padding: 70px 0;
  background: #fff;
}

/* Heading */

.blog-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #1f2e1f;
}

/* GRID*/

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD*/

.blog-card {
  background: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* Image */

.blog-img {
  position: relative;
  padding-top: 54%;
  overflow: hidden;
}

.blog-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

/* Content */

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Read more */

.read-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.read-more:hover {
  color: var(--primary-dark);
}

/* RESPONSIVE*/

/* Tablet */

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 600px) {
  .blog-heading {
    font-size: 26px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ORDER DETAILS - MODERN UI */

.order-details-section {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

/* HEADER */

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.order-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
}

.back-btn {
  background: linear-gradient(135deg, var(--primary), #6a11cb);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ORDER TABLE CARD */

.order-table {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 80px 100px 1fr 120px 120px;
  align-items: center;
  padding: 18px;
}

.table-head {
  background: #f8fafc;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
}

.table-row {
  border-top: 1px solid #f0f0f0;
  transition: 0.3s ease;
}

.table-row:hover {
  background: #fafbff;
}

.table-row img {
  width: 75px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.price {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
}

/* INFO GRID CARDS */

.order-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.info-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

/* SUMMARY */

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.summary-row.total {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-top: 10px;
}

.free {
  color: #00b894;
  font-weight: 600;
}

.discount {
  color: #e74c3c;
  font-weight: 600;
}

/* DELIVERY CARD */

.delivery-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.delivery-card h3 {
  margin-bottom: 20px;
  font-weight: 700;
}

.delivery-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
}

.delivery-grid div {
  flex: 1;
  background: #f8fafc;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
}

.delivery-grid p {
  font-size: 13px;
  color: #777;
  margin-bottom: 5px;
}

.delivery-grid strong {
  font-size: 14px;
  color: #222;
}

/* STATUS BADGES */

.status {
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.status.pending {
  background: #fff3cd;
  color: #856404;
}

.status.shipped {
  background: #d1ecf1;
  color: #0c5460;
}

.status.delivered {
  background: #d4edda;
  color: #155724;
}

.status.cancelled {
  background: #f8d7da;
  color: #721c24;
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .table-head,
  .table-row {
    grid-template-columns: 60px 80px 1fr 80px 80px;
    font-size: 13px;
  }

  .order-info-grid {
    grid-template-columns: 1fr;
  }

  .delivery-grid {
    flex-direction: column;
  }
}

@media (max-width: 600px) {

  .table-head {
    display: none;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .table-row img {
    width: 100px;
  }

  .delivery-grid div {
    text-align: left;
  }
}

/* USER MENU WRAPPER */

.user-menu {
  position: relative;
}

/* USER ICON */

.user-icon {
  font-size: 20px;
  cursor: pointer;
}

/* DROPDOWN */

.user-dropdown {
  position: absolute;
  right: 0;
  top: 35px;
  background: #fff;
  width: 180px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}

/* LINKS */

.user-dropdown a {
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  display: block;
  transition: background 0.2s;
}

.user-dropdown a:hover {
  background: #f3f7f3;
  color: var(--primary);
}

.user-dropdown hr {
  margin: 0;
  border: none;
  border-top: 1px solid #eee;
}

/* TOAST*/

.toast {
  animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

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

/* STAR RATING*/
.star-rating {
  font-size: 28px;
  cursor: pointer;
}

.star-rating .star {
  color: #ccc;
  transition: 0.2s;
  margin-right: 5px;
}

.star-rating .star.active {
  color: #ffc107;
}

.star-rating .star:hover {
  transform: scale(1.2);
}

/* BREADCRUMB BACKGROUND */
.breadcrumb-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary), #6b966e);
  color: #fff;
  padding: 30px 15px;
  overflow: hidden;
}

/* Soft pattern overlay */
.breadcrumb-overlay {
  background: rgba(0, 0, 0, 0.35);
  padding: 25px 0;
}

/* CONTENT WRAPPER */
.breadcrumb-content {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.breadcrumb-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-title i {
  font-size: 24px;
}

/* DESCRIPTION */
.breadcrumb-description {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 18px;
}

/* LIST */
.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
}

/* LI */
.breadcrumb-list li {
  display: flex;
  align-items: center;
}

/* LINK */
.breadcrumb-list li a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.3s;
}

.breadcrumb-list li a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* SEPARATOR USING FA ICON */
.breadcrumb-list li:not(:last-child)::after {
  content: "\f105";
  /* fa-angle-right */
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin: 0 8px;
  opacity: 0.7;
}

/* ACTIVE */
.breadcrumb-list .active {
  font-weight: 600;
  opacity: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 25px 15px;
  }

  .breadcrumb-title {
    font-size: 22px;
  }

  .breadcrumb-description {
    font-size: 13px;
  }

  .breadcrumb-list {
    font-size: 12px;
  }
}

/* Filters */

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-label {
  font-size: 14px;
  color: #777;
  white-space: nowrap;
}

.sort-select {
  border: none;
  background: transparent;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  padding: 4px 20px 4px 6px;
}

.sort-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23666' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}

.container .border {
  background: #fff;
  border: 1px solid #e5e5e5 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-light {
  background: #f8f9fa;
  border-radius: 30px;
  padding: 8px 18px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-light:hover {
  background: #000;
  color: #fff;
}

select.form-select {
  background: transparent;
  font-size: 14px;
  cursor: pointer;
}

.offcanvas {
  width: 360px;
  border-right: 1px solid #eee;
}

.offcanvas-header {
  border-bottom: 1px solid #eee;
}

.offcanvas-title {
  font-weight: 600;
  letter-spacing: .5px;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #f1f1f1;
}

.accordion-button {
  font-weight: 500;
  padding: 14px 10px;
  background: transparent;
}

.accordion-button:not(.collapsed) {
  background: #f9f9f9;
  color: #000;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.form-check {
  padding: 6px 0;
}

.form-check-input {
  cursor: pointer;
}

.form-check-label {
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.form-check-input:checked {
  background-color: #000;
  border-color: #000;
}

.form-range {
  margin-top: 10px;
}

.form-range::-webkit-slider-thumb {
  background: #000;
}

#priceValue {
  font-weight: 500;
}

.offcanvas-body {
  overflow-y: auto;
  padding-bottom: 50px;
}

@media (max-width: 768px) {

  .offcanvas {
    width: 100%;
  }

  .container .border {
    border-radius: 20px !important;
  }

}

.form-check {
  padding-left: 1.4rem;
}

.form-check-input {
  margin-left: -1.4rem;
  margin-right: 8px;
  transform: scale(0.8);
}

.form-check-label {
  cursor: pointer;
  font-size: 14px;
}

/* CONSULTATION SECTION */

.consultation-section {
  background: #f9fafb;
}


/* STEP PROGRESS */

.consultation-section .step-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.consultation-section .step {
  text-align: center;
}

.consultation-section .step span {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e9ecef;
  font-weight: 600;
  margin: auto;
}

.consultation-section .step.active span {
  background: #28a745;
  color: #fff;
}

.consultation-section .step p {
  font-size: 13px;
  margin-top: 5px;
}

.consultation-section .step-line {
  height: 2px;
  width: 60px;
  background: #ddd;
}


/* SERVICE CARD */

.consultation-section .service-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid #eee;
  transition: all .3s ease;
  text-align: center;
  height: 100%;
}

.consultation-section .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.consultation-section .service-img-box {
  width: 65px;
  height: 65px;
  background: #eaf7ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
}

.consultation-section .service-img-box img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.consultation-section .service-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.consultation-section .service-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 14px;
}

.consultation-section .duration {
  background: #f1f3f5;
  padding: 0px 10px;
  border-radius: 6px;
  line-height: 42px;
}

.consultation-section .price {
  font-weight: 700;
  color: #28a745;
  font-size: 18px;
}

.consultation-section .book-btn {
  border-radius: 30px;
}


/* CALENDAR */

.consultation-section .calendar-day {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
  background: #fff;
  text-align: center;
  cursor: pointer;
  transition: .25s;
  font-size: 14px;
}

.consultation-section .calendar-day:hover {
  background: #28a745;
  color: #fff;
}


/* TIME SLOT */

.consultation-section .time-slot {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
  transition: .25s;
}

.consultation-section .time-slot:hover {
  background: #0d6efd;
  color: #fff;
}


/* FORM CARD */

.consultation-section .card {
  border-radius: 14px;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}


/* MOBILE */

@media (max-width:768px) {

  .consultation-section .service-card {
    padding: 18px;
  }

  .consultation-section .service-title {
    font-size: 14px;
  }

  .consultation-section .calendar-day {
    font-size: 12px;
    padding: 10px;
  }

  .consultation-section .time-slot {
    font-size: 12px;
  }

}