@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary-green: #004c03;
  --secondary-green: #008a05;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --font-family: "Inter", sans-serif;
  --nutraj-maroon: #5e1a29; /* Kept for reference but avoided in UI elements */
  --nutraj-brown: #7d4733;
  --nutraj-light-maroon: #853748;
  --nutraj-orange: #cb6143;
  --figma-yellow: #ffb800;
  --figma-green-glow: rgba(0, 178, 7, 0.4);
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: #fafafa;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 1. Top Utility Bar */
.top-bar {
  /* background-color: #380101; */
  background-color: #4682e5; /* Nutraj Dark Maroon */
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
}
.top-bar i {
  color: #fff; /* Figma/Nutraj Yellow */
}
.top-bar .social-icons span {
  margin-right: 15px;
}
.top-bar .social-icons a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* background-color: #004c03 !important; */
  background-color: #111111 !important;
  border-radius: 50%;
  margin-left: 5px;
  font-size: 14px;
  transition: 0.3s;
}
.top-bar .social-icons a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* 2. Main Header */
.main-header {
  background-color: #fff;
  padding: 20px 0;
}
.brand-logo {
  max-height: 60px;
}

.header-search-form {
  display: flex;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  overflow: hidden;
  height: 45px;
  background: #fff;
}
.header-search-form select {
  border: none;
  background: #f8f8f8;
  padding: 0 15px;
  border-right: 1px solid #ebebeb;
  outline: none;
  font-size: 13px;
  color: #666;
  cursor: pointer;
}
.header-search-form input {
  flex-grow: 1;
  border: none;
  padding: 0 15px;
  outline: none;
  font-size: 14px;
}
.header-search-form button {
  /* background-color: #004c03; */
  background-color: #689f38;
  border: none;
  padding: 0 25px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.header-icons .header-icon-box {
  position: relative;
  font-size: 24px;
  color: #333;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header-icons .badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #000;
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0;
}
.cart-amount {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

/* 3. Navigation Bar (Figma Style) */
.main-nav {
  background-color: #00b207; /* Figma Green */
}

.main-nav .nav-links {
  /* background-color: #004c03; */
  /* background-color: #c8b462; */
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.nav-links > li {
  position: relative;
  padding: 12px 25px;
}
.nav-links > li > a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 10px 0;
  border-top: 3px solid #00b207;
}
.dropdown-menu-custom li a {
  padding: 10px 20px;
  display: block;
  color: #333;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
}
.dropdown-menu-custom li:last-child a {
  border-bottom: none;
}
.dropdown-menu-custom li a:hover {
  background-color: #f8f8f8;
  color: #00b207;
}
.nav-links > li:hover .dropdown-menu-custom {
  display: block;
}

/* Marquee */
.marquee-wrapper {
  /* background-color: #5e1a29; */
  background-color: #eac1db;
  color: #000;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
}

/* 3. Navigation Bar (Figma Style with Dropdown) */
.main-nav {
  /* background-color: var(--primary-green); */
  background-color: #203d74;
  margin: 0;
}
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 35px;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  display: block;
  text-transform: uppercase;
}

/* Dropdown magic */
.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0;
  z-index: 999;
}
.dropdown-menu-custom li a {
  color: #333;
  padding: 10px 20px;
  display: block;
  font-size: 13px;
  border-bottom: 1px solid #ebebeb;
}
.dropdown-menu-custom li a:hover {
  background-color: #f8f8f8;
  color: var(--primary-green);
}
.nav-links > li:hover .dropdown-menu-custom {
  display: block;
}

/* Marquee */
.marquee-wraper {
  background-color: var(--nutraj-light-maroon);
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
}

/* 4. Hero Slider */
.hero-slider-wrapper {
  background-color: #fff;
  padding: 0;
}
.hero-slider img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  border-radius: 25px;
}
/* Ensure the parent is relative so dots overlay the image */
.hero-slider {
  position: relative;
}
.owl-theme.hero-slider .owl-dots {
  position: absolute;
  bottom: 30px; /* Force dots inside the image overlay */
  width: 100%;
  text-align: center;
  z-index: 10; /* Ensure they stay on top */
}
.owl-theme.hero-slider .owl-dots .owl-dot {
  outline: none;
}
.owl-theme.hero-slider .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  /* background: #5e1a29; */
  background: #c21c40;
  border-radius: 50%;
  border: 1px solid transparent;
  opacity: 0.6;
  margin: 0 4px;
  transition: all 0.3s ease;
}
.owl-theme.hero-slider .owl-dots .owl-dot.active span {
  /* background: #5e1a29; */
  background: #c21c40;
  width: 32px;
  border-radius: 10px;
  opacity: 1;
}

/* Section General */
.section-wrapper {
  padding: 40px 0;
}
.main-title {
  font-size: 32px;
  font-weight: 800;
  color: #222;
  margin-bottom: 40px;
  text-align: center;
}

/* 5. Collection Slider */
.relative-nav {
  position: relative;
}
.collection-slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 106%;
  left: -3%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.collection-slider .owl-nav button.owl-prev,
.collection-slider .owl-nav button.owl-next {
  pointer-events: auto;
  background: transparent !important;
  color: #000 !important;
  font-size: 45px !important;
  width: auto;
  height: auto;
  box-shadow: none !important;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.collection-slider .owl-nav button:hover {
  color: #666 !important;
}

.product-slider .owl-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 104%;
  left: -2%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.product-slider .owl-nav button.owl-prev,
.product-slider .owl-nav button.owl-next {
  pointer-events: auto;
  background: transparent !important;
  color: #000 !important;
  font-size: 40px !important;
  width: auto;
  height: auto;
  box-shadow: none !important;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.product-slider .owl-nav button:hover {
  color: #666 !important;
}

.collection-card {
  display: block;
  border-radius: 20px;
  height: 220px;
  position: relative;
  padding: 25px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: visible !important; /* THE SECRET: Allow image to escape box on hover */
  z-index: 1;
}
.collection-card:hover {
  z-index: 10; /* Pop to front so it doesn't overlap behind others */
}
.collection-card:hover .collection-img {
  transform: scale(1.25) translateY(-25px); /* Pop OUT and UP */
  filter: drop-shadow(
    0 15px 25px rgba(0, 0, 0, 0.15)
  ); /* Add shadow to the pop for realism */
}
.collection-img {
  width: auto !important;
  height: 160px;
  margin: 0;
  position: absolute;
  right: -15px;
  top: 15px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Added for smooth pop-out animation */
}
.collection-name {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

/* Pop-out Clearance for Overflowing Hover Effects in carousels */
.popout-slider-wrapper .owl-stage-outer {
  padding-top: 60px !important; /* Creates vertical space for the pop-out */
  padding-bottom: 20px !important;
  margin-top: -60px !important; /* Pulls the section back up to eliminate the gap */
  margin-bottom: -20px !important;
}

/* 6. Brands Slider */

.our_brands {
  padding: 50px 0;
}

.brands-slider {
  padding: 0;
}
.brands-slider .owl-stage-outer {
  overflow: hidden;
  padding: 40px 0;
}
.brands-slider .owl-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.brand-box {
  background: #fff;
  border-radius: 35px; /* Softer rounded corners */
  padding: 20px;
  border: 1px solid #e1d8d8; /* Very subtle warm grey */
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px; /* Squatter proportions */
  width: 200px;
  margin: auto;
  transform: scale(0.9); /* All non-center items are this size */
}
.brand-box img {
  max-width: 80%;
  max-height: 90px;
  width: auto !important;
  margin: auto;
  display: block;
  transition: all 0.5s ease;
}

/* Center item */
.brands-slider .owl-item.center .brand-box {
  transform: scale(1.05) !important;
  border-color: transparent;
  box-shadow: 0 10px 45px 5px rgba(240, 30, 30, 0.4); /* Target's diffuse red glow */
  z-index: 10;
  position: relative;
}

.brands-subtext {
  font-size: 16px;
  max-width: 600px;
  color: #555;
  line-height: 1.6;
}

/* 7. Product Cards (100% Nutraj Clone) */
.nutraj-product-card {
  background: transparent;
  border-radius: 25px; /* Follows the soft outer curve */
  padding: 0 15px 15px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e0e0e0; /* The visible inner border from Screenshot 1 */
  box-shadow: none;
}
.card-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 0 -15px 12px;
}
.product-tags {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  pointer-events: none;
}
.tag-left {
  background-color: #a4765d; /* Nutraj Brown tag */
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 10px 2px 8px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tag-right {
  background-color: #a4765d; /* Nutraj Brown tag */
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 8px 2px 10px;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  letter-spacing: 0.5px;
}
.bg-nmlaunch {
  background-color: #d1785f; /* Lighter peachy tone for "NEW LAUNCH" */
}

.product-img-box {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  margin-top: 10px;
}
.product-img-box img {
  max-height: 100%;
  width: auto;
  max-width: 90%;
  object-fit: contain;
}

.product-meta {
  margin-bottom: 8px;
  font-size: 11px; /* Tiny gray text */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-text {
  font-weight: 700;
  color: #555;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.rating-heart {
  display: flex;
  align-items: center;
}
.rating-badge {
  /* background-color: #5e1a29; */
  background-color: #203d74;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.rating-badge i {
  font-size: 9px;
  color: #fff;
}
.rating-heart .fa-heart {
  font-size: 14px;
  color: #aaa; /* Faint outline heart */
  cursor: pointer;
  margin-left: 8px;
}
.rating-heart .fas.fa-heart {
  color: #e31e24; /* Filled heart color if changed */
}

.product-name {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #333 !important;
  line-height: 1.4 !important;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}

.product-pricing {
  font-size: 11px;
  color: #888;
  margin-bottom: 12px;
  margin-top: 5px; /* Stop pushing down away from title */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.product-pricing del {
  margin-left: 3px;
  margin-right: 4px;
}
.current-price {
  font-size: 18px;
  font-weight: 800;
  color: #222;
  margin-right: 2px;
}
.per-gram {
  font-size: 10px;
  color: #888;
}

.Sweettree-btn-cart {
  background-color: #5e1a29; /* Exact Nutraj Maroon Button */
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s background;
  margin-top: auto;
}
.Sweettree-btn-cart:hover {
  background-color: #4a1420;
}

/* Ensure equal height in owl carousel */
.product-slider .owl-stage {
  display: flex !important;
}
.product-slider .owl-item {
  display: flex !important;
  flex: 1 0 auto;
}
.product-slider .item {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border-radius: 35px; /* Extra rounded outer container for soft glow */
  /* box-shadow: 0 10px 45px rgba(0, 0, 0, 0.08); */
  padding: 10px; /* This creates the white gutter between shadow and border */
  margin: 15px 10px; /* Ensuring shadow isn't clipped by carousel */
}
.nutraj-product-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* 8. Offers Slider */
.offers-slider .owl-stage-outer {
  padding: 60px 0 !important;
  margin: -30px 0 !important;
  overflow: visible;
}
.offers-slider .owl-item {
  transition: all 0.5s ease;
  visibility: hidden;
  opacity: 0;
}
.offers-slider .owl-item.active {
  visibility: visible;
  opacity: 1;
}

.offer-card {
  border-radius: 30px;
  position: relative;
  transition: all 0.5s ease;
  transform: scale(0.85); /* Smaller side items */
  z-index: 1;
}
.offer-card img {
  border-radius: 30px;
  width: 100%;
}
.offers-slider .owl-item.center {
  z-index: 10;
}
.offers-slider .owl-item.center .offer-card {
  transform: scale(1.15); /* Enlarge center item */
  /* Prominent warm brownish-red blur per screenshot */
  box-shadow: 0 0 80px 20px rgba(100, 30, 10, 0.4);
}

/* Exact thin black chevrons from screenshot */
.offers-slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  display: flex !important;
  justify-content: space-between;
  pointer-events: none;
}
.offers-slider .owl-nav button.owl-prev,
.offers-slider .owl-nav button.owl-next {
  pointer-events: auto;
  background: transparent !important;
  color: #000 !important;
  font-size: 35px !important;
  font-weight: 300;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: absolute;
}
.offers-slider .owl-nav button.owl-prev {
  left: -50px; /* Push outside container */
}
.offers-slider .owl-nav button.owl-next {
  right: -50px; /* Push outside container */
}

.offers-slider .owl-nav button:hover {
  color: #666 !important;
}

.testimonials-section {
  background-color: #f8f0f0;
  padding: 70px 0;
}

.testimonials-section h2 {
  font-size: 32px;
  color: #222;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.testimonials-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}
.testimonial-nav {
  display: flex;
  gap: 10px;
}
.testimonial-nav .custom-prev,
.testimonial-nav .custom-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.testimonial-nav .custom-next {
  background-color: var(--primary-green);
  color: #fff;
}
.testimonial-card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  padding: 30px 15px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  height: 100%;
}
.quote-icon {
  font-size: 30px;
  color: #a5d6a7;
  margin-bottom: 15px;
  opacity: 0.5;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-user img {
  width: 50px !important;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.user-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 3px 0;
}
.star-rating {
  color: #ff8a00;
  font-size: 12px;
}

/* Tags */
.tags-section {
  padding: 50px 0;
}
.tags-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-pill {
  background-color: #e8f5e9;
  color: #00411f;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}
.tag-pill:hover {
  background-color: var(--primary-green);
  color: #fff;
}

/* 9. Store Locator Section */
.store-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}
.store-img {
  border-radius: 40px;
  width: 100%;
}
.store-title {
  font-size: 32px;
  font-weight: 800;
  color: #111;
}
.store-desc {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  max-width: 75%;
}
.Sweettree-btn-maroon {
  background: #203d74;
  border-radius: 10px;
  padding: 13px 40px;
  color: #fff;
  border: none;
  outline: none;
  margin-top: 12px;
  width: max-content;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}
.Sweettree-btn-maroon:hover {
  background-color: #1c72b9;
  color: #fff;
}
.Sweettree-btn-maroon i {
  font-size: 10px;
  font-weight: 900;
}

/* Overlapping Stats Box */
.stats-box {
  position: absolute;
  bottom: -25px;
  right: 12px;
  width: 65%;
  background: #fff;
  padding: 15px 5px; /* Shorter box height */
  box-shadow: 1.20216px 9.61727px 55.2993px rgb(0 0 0 / 10%); /* Very faint shadow */
  border-radius: 4px;
}
.stats-box .border-end {
  border-right: 1px solid rgba(140, 30, 53, 0.9) !important; /* Maroon thin divider */
}
.stats-number {
  font-size: 22px; /* Smaller font size to match target */
  font-weight: 800; /* Extra bold */
  color: #6170bc;
  margin-bottom: 5px;
}
.stats-label {
  font-size: 13px;
  color: #222; /* Darker blackish grey */
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .store-title {
    font-size: 30px;
  }
  .store-text-box {
    padding-left: 0 !important;
  }
  .stats-box {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 0px; /* Slight overlap upwards */
  }
}

/* 10. Combo Section Exact Copy */
.combo-bg-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 93%; /* Generous width to swallow arrows */
  background-color: #161616;
  border-top-right-radius: 400px;
  border-bottom-right-radius: 400px;
  z-index: 0;
}
.combo-title {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.combo-desc {
  font-size: 16px;
  color: #a0a0a0 !important;
  line-height: 1.6;
}
.combo-nav {
  background-color: #2a2a2a;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-size: 16px;
}
.combo-nav:hover {
  background-color: #1c72b9;
}

/* Bleed out right logic */
.combo-slider-wrapper {
  width: calc(100% + ((100vw - 100%) / 2));
  padding-right: 15px; /* So the active box isn't directly flush to wall */
}

/* Precise Double Card */
/* .combo-slider .item {
  width: 310px; 
} */
.combo-card-outer {
  background: #161616; /* Same as the black section shape! */
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.combo-card-inner {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Image Box */
.combo-img-box {
  position: relative;
  background: #fff;
  border-bottom: 1px solid #111;
  padding-bottom: 25px;
  padding-top: 15px;
}
.combo-img-box img {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
}

/* Badges */
.badge-value {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #d67a62;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-bottom-right-radius: 12px;
  text-transform: uppercase;
  z-index: 2;
}
.badge-bestseller {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #bf6f5f;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-bottom-right-radius: 12px;
  text-transform: uppercase;
  z-index: 2;
}
.badge-discount {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #c9523e;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-bottom-left-radius: 12px;
  z-index: 2;
}
.badge-soldout {
  position: absolute;
  bottom: -15px; /* Straddles the horizontal border line */
  left: 0;
  background-color: #181818;
  color: #fca03e; /* Distinct Orange from Image 1 */
  font-size: 13px;
  font-weight: 800;
  padding: 5px 14px;
  z-index: 10; /* Overlaps body */
}

/* Card Body Items */
.combo-card-body {
  padding: 20px 15px 15px 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #fff;
}
.combo-brand-row {
  margin-bottom: 10px;
}
.combo-card-title {
  font-size: 14.5px;
  font-weight: 500;
  color: #222;
  line-height: 1.45;
  height: 60px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
}
.price-row {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
}

.variants-section .price-row {
  margin-bottom: 0;
}

.mrp-label {
  font-size: 13px;
  color: #222;
  font-weight: 700;
}
.mrp-strike del {
  color: #999;
  font-size: 14px;
}
.price-final {
  font-size: 17px;
  /* color: #6a1a2b; */
  color: #203d74;
  font-weight: 800;
}
.per-gram-text {
  color: #888;
  font-size: 13px;
  margin-left: 2px;
}
.combo-btn {
  background-color: #611928;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px; /* Slightly pill-ish */
  padding: 7px 0;
  width: 100%;
  transition: 0.3s;
}
.combo-btn:hover {
  background-color: #8c1e35;
}

@media (max-width: 991px) {
  .combo-bg-shape {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    width: 95%;
  }
  .combo-slider-wrapper {
    width: 100%; /* Reset bleed on mobile */
  }
}

/* 11. Shop By Category */
.shop-by-category {
  background-color: #fbfbfb; /* Subtle off-white base to match spacing */
}
.cat-box {
  width: 20%;
  height: 250px;
  border-radius: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  background: #fff;
}
.cat-icon-wrap {
  width: 90px;
  height: 90px;
  border: 1px solid #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #111;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.cat-title {
  font-size: 16px;
  font-weight: 800;
  color: #111;
  transition: all 0.3s ease;
}

/* Base Colors */
.cat-nuts {
  border: 1px solid #9c6a5a;
}
.cat-nuts:hover {
  background-color: #9c6a5a;
}

.cat-berries {
  border: 1px solid #a8325a;
}
.cat-berries:hover {
  background-color: #a8325a;
}

.cat-dried-fruits {
  border: 1px solid #c1973b;
}
.cat-dried-fruits:hover {
  background-color: #c1973b;
}

.cat-seeds {
  border: 1px solid #4a7c59;
}
.cat-seeds:hover {
  background-color: #4a7c59;
}

.cat-mixes {
  border: 1px solid #40739e;
}
.cat-mixes:hover {
  background-color: #40739e;
}

/* Hover Switch */
.cat-box:hover .cat-title,
.cat-box:hover .cat-icon-wrap {
  color: #fff;
  border-color: #fff;
}

/* 12. Trust Banner */
.trust-bar-outer {
  background: radial-gradient(
    50% 1294.07% at 50% 49.98%,
    #240000 0%,
    #000000 100%
  );
  border-radius: 12px;
}
.trust-item {
  background-image: url("../images/line.png");
  height: 150px;
  background-repeat: no-repeat;
  background-position: right;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust-item:last-child {
  background-image: none;
}

.trust-icon {
  font-size: 38px;
  color: #e4294a;
}
.trust-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}
@media (max-width: 991px) {
  .trust-item {
    border-right: none;
    margin-bottom: 20px;
  }
}

/* 13. Whole Spices Section */
.spice-slider .owl-stage {
  display: flex !important;
}
.spice-slider .owl-item {
  display: block !important;
  padding: 0; /* Creates a consistent 30px gap between cards */
}
.spice-card-outer {
  background: #fff;
  border-radius: 20px; /* Reduced to perfectly match inner curve delta */
  padding: 15px; /* Perfect equal boundary framing */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Match reference subtle shadow */
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Inner framed box containing content */
.spice-card-inner {
  border: 1px solid #dcdcdc; /* Thin grey border */
  border-radius: 12px;
  padding: 15px 15px 0 15px; /* So the button sits near the bottom */
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.spice-card-body {
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.spice-img-box {
  position: relative;
  padding-bottom: 20px;
}
.spice-img-box img {
  width: 100%;
}
.spice-divider {
  border-top: 1px solid #333;
  margin: 0 -15px 12px -15px; /* Reach the edges of inner frame */
  opacity: 1;
}

/* Notice exact slanted structure */
.badge-new-launch {
  position: absolute;
  top: -15px; /* Align to touching the top border curve */
  left: -15px;
  /* background: #a9705a; */
  background: #6170bc;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 15px 4px 12px;
  text-transform: uppercase;
  border-top-left-radius: 12px; /* Flow along the rounded corner */
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%); /* Restore slant */
}

.badge-spice-discount {
  position: absolute;
  top: -15px;
  right: -15px;
  /* background: #a9705a; */
  background: #1c72b9;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px 4px 15px;
  border-top-right-radius: 12px;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%); /* Restore slant */
}

.badge-preorder {
  position: absolute;
  top: -15px; /* Straddles the HR line */
  left: -15px;
  /* background: #a9705a; */
  background: #6170bc;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-top-left-radius: 12px;
  padding: 4px 12px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.spice-card-title {
  font-size: 14px;
  font-weight: 400 !important;
  color: #444 !important;
  line-height: 1.4 !important;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}

.spice-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
  font-size: 11px;
  color: #888;
}

/* Overwrite internal slider nav controls to match external clean design */
.spice-slider .owl-nav,
.product-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  margin: 0;
}
.spice-slider .owl-nav button.owl-prev,
.spice-slider .owl-nav button.owl-next,
.product-slider .owl-nav button.owl-prev,
.product-slider .owl-nav button.owl-next {
  position: absolute;
  pointer-events: auto;
  font-size: 45px !important;
  font-weight: 100 !important;
  color: #888 !important;
  background: transparent !important;
  transition: color 0.3s ease;
  margin: 0;
  padding: 0 !important;
}
.spice-slider .owl-nav button.owl-prev:hover,
.spice-slider .owl-nav button.owl-next:hover,
.product-slider .owl-nav button.owl-prev:hover,
.product-slider .owl-nav button.owl-next:hover {
  color: #333 !important;
  background: transparent !important;
}
.spice-slider .owl-nav button.owl-prev,
.product-slider .owl-nav button.owl-prev {
  left: -50px; /* Bring it closer so it doesn't get clipped by outer container */
}
.spice-slider .owl-nav button.owl-next,
.product-slider .owl-nav button.owl-next {
  right: -50px;
}

@media (max-width: 768px) {
  .spice-slider .owl-nav,
  .product-slider .owl-nav {
    display: none;
  }
}

/* 14. Shop By Purpose */
.shop-by-purpose-section {
  background-color: #fff;
  padding: 50px 0;
}
.purpose-card {
  border-radius: 25px;
  position: relative;
  overflow: visible;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  cursor: pointer;
  padding: 20px;
}
.card-bg-gifting {
  background-color: #ac3c57;
}
.card-bg-cooking {
  background-color: #a46d54;
}
.card-bg-snacking {
  background-color: #71765c;
}
.card-bg-nutrition {
  background-color: #075b6e;
}

.purpose-default {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  pointer-events: none;
  padding-bottom: 40px;
}
.purpose-circle {
  width: 110px;
  height: 110px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid transparent;
}
.card-bg-gifting .purpose-circle {
  border-color: #ac3c57;
}
.card-bg-cooking .purpose-circle {
  border-color: #a46d54;
}
.card-bg-snacking .purpose-circle {
  border-color: #71765c;
}
.card-bg-nutrition .purpose-circle {
  border-color: #075b6e;
}

.purpose-circle img {
  width: 85px;
  height: 85px;
}

.purpose-title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-top: 60px;
}

/* Hover state */
.purpose-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  pointer-events: none;
}
.hover-icon {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 25px;
  left: 25px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.hover-text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0;
}

.purpose-card:hover .purpose-default {
  opacity: 0;
  transform: translateY(10px);
}
.purpose-card:hover .purpose-hover {
  opacity: 1;
  transform: translateY(0);
}

/* 15. Wholesale Banner */
.banner-rounded {
  border-radius: 12px;
}

/* 16. Recent Blogs */
.recent-blogs-section {
  overflow: hidden; /* Prevent arrows triggering horizontal scroll on some viewports */
}
.blog-card {
  position: relative;
  text-align: left;
  border-radius: 20px;
  margin-bottom: 30px;
}
.blog-img {
  width: 100%;
  height: 240px;
  border-radius: 20px;
  object-fit: cover;
}
.blog-content-box {
  background: #fff;
  border-radius: 15px;
  margin: -40px 15px 0 15px;
  position: relative;
  z-index: 2;
  padding: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); /* The overlapping card shadow */
}
.logo-circle-mini {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #ddd;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-circle-mini img {
  width: 100% !important;
  height: auto;
}
.blog-hr {
  margin: 15px 0;
  border-top: 1px solid #eee;
  opacity: 1;
}
.blog-heading {
  font-size: 14px;
  font-weight: 700;
  /* color: #712435; */
  color: #203d74;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-excerpt {
  font-size: 11px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  font-size: 11px;
  font-weight: 800;
  color: #111;
  text-decoration: none;
}
.blog-read-more:hover {
  /* color: #5e1a29; */
  color: #203d74;
}
.blog-meta-bold {
  font-size: 11px !important;
  color: #1a1a1a;
}
.blog-meta-date {
  font-size: 10px !important;
  color: #888;
}
.blog-meta-icon {
  font-size: 8px !important;
  margin-left: 2px;
}
.blog-meta-share {
  font-size: 13px !important;
  color: #666;
  cursor: pointer;
}

/* Blog slider explicit styles to allow overflow and external nav */
.blog-slider .owl-stage-outer {
  overflow: visible !important;
}

.blog-slider .owl-nav {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  margin: 0;
}
.blog-slider .owl-nav button.owl-prev,
.blog-slider .owl-nav button.owl-next {
  position: absolute;
  pointer-events: auto;
  font-size: 45px !important;
  font-weight: 100 !important;
  color: #888 !important;
  background: transparent !important;
  transition: color 0.3s ease;
  margin: 0;
  padding: 0 !important;
}
.blog-slider .owl-nav button.owl-prev:hover,
.blog-slider .owl-nav button.owl-next:hover {
  color: #333 !important;
  background: transparent !important;
}
.blog-slider .owl-nav button.owl-prev {
  left: -50px;
}
.blog-slider .owl-nav button.owl-next {
  right: -50px;
}
@media (max-width: 768px) {
  .blog-slider .owl-nav {
    display: none;
  }
}

/* 17. Custom FAQ Accordion */
.custom-accordion .accordion-item {
  border: 1px solid #c9c9c9;
  border-radius: 6px !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: none;
}
.custom-accordion .accordion-button {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  padding: 15px 20px;
  background-color: #fff;
  border: none;
  box-shadow: none !important;
}
.custom-accordion .accordion-button:not(.collapsed) {
  color: #222;
  background-color: #fcfcfc;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
}

/* Custom Thin Chevron Icon (Light Red) */
.custom-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ea7363' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5l4 4 4-4'/%3E%3C/svg%3E");
  background-size: 18px;
  transition: transform 0.3s ease-in-out;
}
.custom-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ea7363' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5l4 4 4-4'/%3E%3C/svg%3E");
  transform: rotate(-180deg);
}

.custom-accordion .accordion-body {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  padding: 15px 20px 20px 20px;
}

/* 18. New Testimonials Section Overrides */
.testimonial-card {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.t-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.t-arrow.bg-white {
  border: 1px solid #ddd;
}
.t-arrow.bg-success {
  background-color: #004c03 !important;
}
.t-arrow:hover {
  opacity: 0.8;
}

.fssai_logo {
  width: 50px;
}

/* 19. Tags Section (People Are Also Looking For) */
.search-tag-pill {
  background-color: #e4f5e5;
  color: #2a5e2f;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.search-tag-pill:hover {
  background-color: #d1ebd3;
  color: #1b421f;
}

/* 20. Main Footer Section */
.filter-white {
  /* Converts black/colored images to pure white */
  filter: brightness(0) invert(1);
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links li a {
  color: #888;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links li a:hover {
  color: #fff;
}

.footer_bottom {
  align-items: center;
}

.copyright-text {
   font-size: 12px; color: #666;margin-bottom: 0;
}

.copyright-text img{
     max-width: 50px;
}

/* ========================================================================= */
/*                       RESPONSIVE DESIGN MEDIA QUERIES                     */
/* ========================================================================= */

/* 1. Large Devices / Small Desktop (max-width: 1180px) */
@media (max-width: 1180px) {
  .section-wrapper {
    padding: 30px 0;
  }
  .collection-slider .owl-nav {
    width: 100%;
    left: 0;
  }
  .product-slider .owl-nav {
    width: 100%;
    left: 0;
  }
  .offers-slider .owl-nav button.owl-prev {
    left: -10px;
  }
  .offers-slider .owl-nav button.owl-next {
    right: -10px;
  }
  .main-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .hero-slider img {
    height: 400px;
  }
}

/* 2. Tablet Landscape & Portrait (max-width: 1024px) */
@media (max-width: 1024px) {
  .brand-logo {
    max-height: 45px;
  }
  .hero-slider img {
    height: 350px;
  }
  .marquee-wrapper {
    font-size: 12px;
  }

  .collection-card {
    height: 200px;
    padding: 15px;
  }
  .collection-img {
    height: 120px;
    right: 0;
  }
  .product-img-box {
    height: 150px;
  }
  .current-price {
    font-size: 16px;
  }

  .offers-slider .owl-stage-outer {
    padding: 40px 0 !important;
    margin: -40px 0 !important;
  }
  .offers-slider .owl-item.center .offer-card {
    transform: scale(1.05);
  }

  .stats-box {
    position: static;
    transform: none;
    width: 100%;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .stats-label {
    font-size: 11px;
  }

  .combo-slider-wrapper {
    margin-right: 0;
    padding-left: 0;
  }
  .combo-bg-shape {
    border-radius: 20px;
    right: 0;
    width: 100%;
  }
}

/* 3. Tablet Portrait (max-width: 768px) */
@media (max-width: 768px) {
  .hero-slider img {
    height: 280px;
  }
  .main-title {
    font-size: 24px;
  }

  .collection-card {
    height: 180px;
  }
  .collection-img {
    height: 90px;
  }

  .brand-box {
    width: 150px;
    height: 120px;
  }
  .brands-slider .owl-item.center .brand-box {
    transform: scale(1) !important;
  }

  .product-slider .owl-nav,
  .collection-slider .owl-nav {
    display: none !important;
  }

  .combo-slider-wrapper .owl-stage-outer {
    padding: 20px 0;
  }

  .main-footer .col-lg-2,
  .main-footer .col-lg-3,
  .main-footer .col-lg-4 {
    margin-bottom: 0;
    margin-top: 20px;
  }
}

/* 4. Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
  .top-bar {
    display: none;
  }
  .main-header {
    padding: 10px 0;
  }
  .header-icon-box {
    font-size: 20px !important;
  }
  .header-icons .badge {
    top: -2px;
    right: -5px;
  }

  .hero-slider img {
    height: 200px;
    border-radius: 15px;
  }
  .marquee-wrapper {
    font-size: 11px;
    padding: 5px 0;
  }

  .section-wrapper {
    padding: 20px 0;
  }
  .main-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .collection-card {
    margin: 0;
  }
  .collection-name {
    font-size: 14px;
    bottom: 10px;
    left: 10px;
  }

  .brand-box {
    height: 110px;
    width: 130px;
    padding: 10px;
  }
  .brands-subtext {
    font-size: 13px;
    padding: 0 15px;
  }

  .footer_bottom {
    flex-direction: column;
    padding: 15px 0;
  }
  .footer_bottom p {
    margin-bottom: 10px !important;
  }
}

/* Nutraj Style Product Card - 100% Pixel Perfect */
.Sweettree-product-card {
  position: relative;
  background: #fff !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 12px;
  transition: box-shadow 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.Sweettree-product-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Wrapper for textual content to allow better positioning */
.product-details-content {
  display: flex;
  flex-direction: column;
}

/* Nutraj Slanted Ribbon Badges */
.product-img-box {
  position: relative;
  overflow: hidden;
}

.product-tags {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 !important;
}

.tag-left,
.tag-right {
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tag-left {
  /* background-color: #5e1a29; */
  background-color: #6170bc;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  padding-right: 18px;
}

.tag-right {
  /* background-color: #9a785b;  */
  background-color: #1c72b9;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  padding-left: 18px;
}

/* Card Link Support */
.product-card-link {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
  width: 100%;
  transition: all 0.3s;
}

.Sweettree-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.product-card-link:hover .product-name {
  color: #203d74 !important; /* Hover title color shift to maroon */
}

/* List View Active Overrides */
#shopProductGrid.list-view-active .product-card-link {
  display: flex !important;
  align-items: center !important;
}

.product-meta {
  padding: 10px 15px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-name {
  padding: 0 12px 12px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  margin: 0;
  line-height: 1.4;
  height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

.product-pricing {
  padding: 0 15px 0px;
  font-size: 15px;
  color: #111;
  font-weight: 500;
  margin-top: auto;
}

.Sweettree-btn-cart {
  /* background: #5e1a29; */
  background: #203d74;
  color: #fff;
  border: none;
  padding: 8px 12px;
  font-size: 18px;
  font-weight: 600;
  width: 92% !important;
  margin: auto;
  border-radius: 10px;
  transition: background 0.3s;
}

.Sweettree-btn-cart:hover {
  background: #1c72b9;
}

/* ========================================================================= */
/*                              LIST VIEW STYLES                             */
/* ========================================================================= */

/* Only applies when the container has .list-view-active */
#shopProductGrid.list-view-active .col {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

#shopProductGrid.list-view-active .Sweettree-product-card {
  display: flex !important;
  flex-direction: row !important;
  height: auto !important;
  min-height: 420px !important;
  padding: 40px 0 !important;
  border-radius: 0 !important;
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: 1.5px solid #eee !important;
  box-shadow: none !important;
  background: transparent !important;
  align-items: center !important;
}

#shopProductGrid.list-view-active .product-details-content {
  flex: 1 !important;
  padding-left: 60px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

#shopProductGrid.list-view-active .product-img-box {
  flex: 0 0 350px !important;
  height: 350px !important;
  background: #fff !important;
  border-radius: 15px !important;
  border: 1.5px solid #e0e0e0 !important;
  margin: 0 !important;
  padding: 30px !important;
}

#shopProductGrid.list-view-active .product-tags {
  top: 55px !important;
  left: 15px !important;
  width: 320px !important;
  z-index: 10 !important;
}

#shopProductGrid.list-view-active .card-divider {
  display: none !important;
}

#shopProductGrid.list-view-active .product-meta {
  padding: 0 0 15px 0 !important;
  max-width: 500px !important;
}

#shopProductGrid.list-view-active .brand-text {
  font-size: 18px !important;
}

#shopProductGrid.list-view-active .product-name {
  padding: 0 0 15px 0 !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  max-width: 550px !important;
  height: 65px !important;
}

#shopProductGrid.list-view-active .product-pricing {
  padding: 0 0 30px 0 !important;
  font-size: 20px !important;
  margin-top: 0 !important;
}

#shopProductGrid.list-view-active .current-price {
  font-size: 28px !important;
}

#shopProductGrid.list-view-active .Sweettree-btn-cart {
    width: auto !important;
    min-width: 180px !important;
    padding: 9px 20px !important;
  font-size: 22px !important;
  margin: 0 !important;
}

/* ========================================================================= */
/*                              SHOP PAGE STYLES                             */
/* ========================================================================= */

.shop_banner_image img {
  width: 100%;
  margin-top: 20px;
  border-radius: 15px;
}

/* Breadcrumb & Intro */
.breadcrumb-item a {
  text-decoration: none;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  font-size: 10px;
  vertical-align: middle;
}

/* Pixel Perfect Shop Collection Slider */
.shop-collection-slider-wrapper {
  margin-top: 10px;
  position: relative;
}

.shop-collection-slider .owl-stage-outer {
  overflow: hidden; /* Hide extra side slides */
  padding: 35px 0; /* Add vertical space for pop-outs */
}

.shop-collection-slider .item {
  padding: 0 40px; /* Internal horizontal space for nut pop-outs */
}

.shop-collection-card {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 65px;
  width: 170px; /* Fixed width for stability */
  margin: 0 auto; /* Center within the item's padding */
  border-radius: 18px;
  padding: 0 20px;
  transition: transform 0.3s ease;
  position: relative;
  text-decoration: none !important;
}

.shop-collection-card img {
  position: absolute;
  left: -25px; /* Further overlap */
  top: -20px;
  width: 105px !important;
  height: 105px !important;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4)); /* Stronger shadow */
  transition: transform 0.3s ease;
  z-index: 2;
}

.shop-collection-card span {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

/* Navigation Chevrons - Thin & Minimalist */
.shop-collection-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: calc(100% + 60px);
  left: -30px;
  transform: translateY(-50%);
  display: flex !important;
  justify-content: space-between;
  pointer-events: none;
  margin: 0 !important;
}

.shop-collection-slider .owl-nav button {
  pointer-events: auto;
  background: none !important;
  border: none !important;
  color: #000 !important;
  font-size: 28px !important;
  font-weight: 300 !important;
  padding: 0 !important;
}

.shop-collection-slider .owl-nav button:hover {
  color: #004c03 !important;
}

.shop-collection-card:hover {
  transform: translateY(-3px);
}

.shop-collection-card:hover img {
  transform: scale(1.1) rotate(5deg);
}

/* Minimalist View Toggles */
.view-tools-bar {
  border-bottom: 2px solid #edeff1;
  padding-bottom: 25px;
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-btn {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 400;
  color: #444;
  display: flex;
  align-items: center;
  padding: 0;
  cursor: pointer;
}

.view-btn i {
  font-size: 18px;
  margin-right: 12px;
}

.view-btn.active {
  color: #000;
}

.vr-line {
  width: 1px;
  height: 35px;
  background-color: #000;
  margin: 0 30px;
}

/* Sort By Dropdown Styling */
.sort-select-wrapper .form-select {
  border: 1.5px solid #000;
  border-radius: 10px;
  padding: 10px 15px;
  padding-right: 40px;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  background-position: right 15px center;
  background-size: 14px;
  min-width: 130px;
}

.sort-select-wrapper .form-select:focus {
  box-shadow: none;
  border-color: #004c03;
}

/* Shop Sidebar Filter Nutraj Style - 100% Pixel Perfect */
.shop-sidebar-filter {
  padding: 20px 15px !important;
  background: #fff;
  /* border: 1px solid #951c33 !important; */
  border: 1px solid #1c72b9 !important;
  position: sticky;
  top: 20px;
  z-index: 10;
}

.filter-header h5 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #000;
  margin-bottom: 10px !important;
}

.filter-toggle {
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  font-size: 13.5px;
  color: #000;
}

.filter-toggle i {
  font-size: 10px;
  transition: transform 0.3s;
}

.filter-pill-btn {
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 4px;
  color: #333;
  transition: 0.2s;
  min-width: 80px;
}

.filter-pill-btn:hover,
.filter-pill-btn.active {
  background: #f5f5f5;
  border-color: #000;
  color: #000;
  font-weight: 600;
}

.from-to-inputs .input-group {
  border: 1px solid #d9d9d9 !important;
  border-radius: 4px !important;
  overflow: hidden;
}

.from-to-inputs .input-group-text {
  background: #f9f9f9;
  font-size: 12px;
  border: none;
  padding: 0 8px;
}

.from-to-inputs input {
  font-size: 12px;
  height: 32px;
}

.filter-tag-btn {
  border: 1px solid #e0e0e0;
  background: #fff;
  padding: 4px 8px;
  font-size: 11.5px;
  border-radius: 4px;
  color: #444;
  transition: 0.2s;
  min-width: 55px;
  text-align: center;
  font-weight: 400;
}

.filter-tag-btn:hover {
  background: #f2f2f2;
  border-color: #999;
  color: #000;
}

.discount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.form-check-label {
  font-size: 13px;
  color: #555;
}

/* View Tools Bar - Nutraj Style */
.view-tools-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.view-btn {
  background: none;
  border: none;
  font-size: 13px;
  color: #888;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.view-btn.active,
.view-btn:hover {
  color: #000;
  font-weight: 600;
}

.view-btn i {
  font-size: 16px;
}

.sort-select-wrapper .form-select {
  border: 1px solid #742431 !important; /* Maroon border */
  font-size: 12px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

/* Custom Maroon Pagination */
.custom-maroon-pagination .page-item.active .page-link {
  /* background-color: #742431 !important;
  border-color: #742431 !important; */
  background-color: #1c72b9 !important;
  border-color: #1c72b9 !important;

  color: #fff !important;
}

.custom-maroon-pagination .page-link {
  color: #333;
  border: 1px solid #ddd;
  margin: 0 5px;
  border-radius: 4px !important;
  font-size: 14px;
  font-weight: 500;
}

.custom-maroon-pagination .page-link:hover {
  background-color: #f8f8f8;
  color: #742431;
}

/* Search Tag Pill Refinement */
.search-tag-pill {
  display: inline-block;
  padding: 8px 16px;
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  border-radius: 4px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.search-tag-pill:hover {
  background-color: #203d74;
  color: #fff;
  border-color: #203d74;
}

/* 17. Nutraj Custom Cart Offcanvas */
.nutraj-cart-offcanvas {
  width: 400px !important;
  max-width: 100vw !important;
  border-left: none !important;
  display: flex !important;
  flex-direction: column !important;
  z-index: 1060 !important; /* Above bottom nav */
}

@media (max-width: 767px) {
  .nutraj-cart-offcanvas {
    width: 85% !important; /* Drawer effect on mobile */
  }
}

/* Custom Thin Scrollbar */
.cart-body::-webkit-scrollbar,
.checkout-body::-webkit-scrollbar {
  width: 4px;
}
.cart-body::-webkit-scrollbar-track,
.checkout-body::-webkit-scrollbar-track {
  background: transparent;
}
.cart-body::-webkit-scrollbar-thumb,
.checkout-body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.cart-header {
  padding: 12px 20px;
  background: #fff;
  border-bottom: 1px solid #f1f1f1 !important;
}

.cart-header .offcanvas-title {
  font-size: 18px;
  color: #111;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.cart-header .btn-close {
  font-size: 12px;
  opacity: 0.8;
}

/* Shipping Progress */
.shipping-progress-section {
  background: white;
}

.custom-progress-bar-container {
  height: 5px;
  background-color: #f2f2f2;
  border-radius: 10px;
  overflow: visible;
  position: relative;
  margin: 15px 0 10px 0;
}

.custom-progress-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.custom-progress-fill {
  height: 100%;
  background-color: #333;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.custom-progress-milestone {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 50%;
}

/* Success Banner */
.cart-success-banner {
  background-color: #000;
  color: #fff;
  padding: 8px 15px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

/* Promo Box */
.cart-promo-box {
  border: 1px solid #f1e1e1;
  background-color: #fffafb;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #444;
  padding: 10px 15px;
  line-height: 1.5;
}

/* Cart Items */
.cart-item-card {
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s;
}

.cart-item-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f8f8f8;
  color: #999;
  border: none;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.cart-item-remove:hover {
  background-color: #742431;
  color: #fff;
}

.cart-item-img-box {
  width: 75px;
  height: 75px;
  background: #fff;
  border: 1px solid #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.cart-item-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-item-brand {
  font-size: 9px;
  color: #1c72b9;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-item-title {
  font-size: 12px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
  margin: 2px 0 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 26px;
  overflow: hidden;
}

.qty-btn {
  background: #fdfdfd;
  border: none;
  width: 24px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.qty-input {
  width: 28px;
  height: 100%;
  border: none;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 0;
  background: white;
}

.cart-item-pricing .mrp {
  font-size: 10px;
  color: #999;
  margin-right: 4px;
}

.cart-item-pricing .current-price {
  font-weight: 800;
  color: #111;
  font-size: 14px;
}

/* 17. Nutraj Custom Cart Offcanvas */
.nutraj-cart-offcanvas {
  width: 400px !important;
  max-width: 100vw !important;
  border-left: none !important;
  display: flex;
  flex-direction: column;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 20px;
}

/* Sticky Footer */
.cart-sticky-footer {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 15px 20px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
  z-index: 100;
  border-top: 1px solid #f1f1f1;
}

.cart-order-summary-compact {
  margin-bottom: 15px;
}

.summary-row-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 13px;
  color: #444;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #ddd;
}

.total-label {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.total-amount {
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

.btn-place-order {
  width: 100%;
  background-color: #203d74;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: background 0.3s;
}

.btn-place-order:hover {
  background-color: #1c72b9;
}

.payment-icons {
  display: flex;
  gap: 10px;
  opacity: 0.9;
  margin-top: 2px;
}

.payment-icons i {
  font-size: 18px;
}

/* Upsell Area Refinement */
.upsell-title {
  font-size: 12px;
  font-weight: 700;
  color: #111;
  display: block;
  margin-bottom: 15px;
  line-height: 1.4;
}

.cart-upsell-slider .item {
  padding: 5px;
}

.mini-upsell-card {
  border-radius: 12px;
  border: 1px solid #f2f2f2;
  padding: 10px;
  background: #fdfdfd;
}

.mini-upsell-card .product-img-box {
  height: 90px;
}

.mini-upsell-card .tag-left,
.mini-upsell-card .tag-right {
  font-size: 7px;
  padding: 2px 6px;
  height: 16px;
}

.mini-upsell-card .product-name {
  font-size: 11px !important;
  min-height: 30px;
  margin: 5px 0;
}

.mini-upsell-card .current-price {
  font-size: 12px !important;
}

.mini-upsell-card .Sweettree-btn-cart {
  font-size: 10px;
  padding: 9px 5px !important;
  border-radius: 6px;
}

.cart-upsell-slider .owl-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  display: flex !important;
  justify-content: space-between;
  pointer-events: none;
  margin: 0 !important;
}

.cart-upsell-slider .owl-nav button {
  pointer-events: auto;
  font-size: 30px !important;
  color: #000 !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

.cart-upsell-slider .owl-nav button.owl-prev {
  left: -5px;
  position: absolute;
}

.cart-upsell-slider .owl-nav button.owl-next {
  right: -5px;
  position: absolute;
}

.btn-place-order-nav {
  width: 100%;
  background-color: #5e1a29;
  color: #fff;
  border-radius: 6px;
  padding: 12px;
  font-weight: 700;
  border: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s background;
}

.btn-place-order-nav:hover {
  background-color: #4a1420;
}

.payment-icons-inline {
  display: inline-flex;
  gap: 4px;
}

/* ============================================================== */
/* 18. Product Details Page & Premium Tabs                        */
/* ============================================================== */

/* Main Gallery Thumbnails */
.thumb-item-wrapper {
  max-width: 100%;
}
.thumb-item {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-color: #fff;
}
.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.thumb-item.active-thumb {
  border-color: #ba6f66;
  box-shadow: 0 0 5px rgba(186, 111, 102, 0.4);
}

/* Variant & Quantity Styling */
.detail-qty-selector .qty-btn {
  color: #333;
  width: 35px;
  height: 100%;
  cursor: pointer;
  transition: background 0.2s;
}
.detail-qty-selector .qty-btn:hover {
  background-color: #f5f5f5;
}
.detail-qty-selector .qty-input {
  outline: none;
  background: transparent;
}

/* Optimized Pricing Styles */
.detail-price {
  font-family: var(--font-family);
  letter-spacing: -0.5px;
}
.discount-badge {
  letter-spacing: 0.2px;
}
.save-amount {
  letter-spacing: -0.2px;
}
.unit-price {
  font-style: italic;
}

.variant-box {
  border: 1px solid #ccc;
  transition: all 0.3s ease;
  background-color: #fff;
}
.variant-box.active {
  border: 1px solid #6a1a2b !important;
  background-color: #fcf6f7 !important;
  box-shadow: inset 0 0 0 1px #6a1a2b;
}

/* Pincode Input Customization */
.pincode-box:focus-within {
  border-color: #533139 !important;
  box-shadow: 0 0 0 0.2rem rgba(83, 49, 57, 0.25);
}
.pincode-box input:focus {
  outline: none;
}

/* Premium Tabs Design */
.premium-tabs-wrapper {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 5px;
}
.premium-tabs {
  justify-content: center;
  align-items: center;
}
.custom-tab-btn {
  color: #666 !important;
  font-weight: 500;
  font-size: 16px;
  background: transparent !important;
  border: none !important;
  padding: 10px 20px;
  transition: color 0.3s ease;
  position: relative;
}
.custom-tab-btn:hover {
  color: #111 !important;
}
.custom-tab-btn.active {
  /* color: #6a1a2b !important; */
  color: #203d74 !important;
  font-weight: 600;
}

/* Animated Underline */
.custom-tab-btn::after {
  content: "";
  position: absolute;
  bottom: -6px; /* Position right on the wrapper border */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  /* background-color: #6a1a2b; */
  background-color: #203d74;
  transition: width 0.3s ease;
  border-radius: 3px 3px 0 0;
}
.custom-tab-btn.active::after {
  width: 100%;
}

/* Custom Tab Divider Line */
.divider-line {
  height: 20px;
  width: 1px;
  background-color: #ddd;
  margin: 0 10px;
}

/* Benefit Grid Icons */
.benefit-icon-wrapper {
  background-color: #f9f9f9;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.benefit-icon-wrapper:hover {
  transform: translateY(-5px);
  border-color: #ccc !important;
}

/* Specifications Table */
.specification-table td {
  padding: 15px;
  vertical-align: middle;
}

.pincode-box button {
  width: 170px;
}

/* ========================================================================= */
/*                              RESPONSIVE DESIGN                            */
/* ========================================================================= */

/* Small Desktop (1180px and below) */
@media (max-width: 1199px) {
  .brand-logo {
    max-width: 140px;
  }
  .header-search-form input {
    width: 200px;
    font-size: 13px;
  }
  .header-icon-box {
    margin-left: 5px;
  }
  .nav-links a {
    font-size: 12px;
    padding: 12px 10px;
  }
  .top-bar {
    font-size: 12px;
  }
  .container {
    max-width: 1140px;
  }
}

/* Small Laptop / Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
  .container {
    max-width: 960px;
  }
  .main-title {
    font-size: 28px;
  }
  .hero-slider .item img {
    height: auto;
  }
  .brand-logo {
    max-width: 120px;
  }
  .header-search-form select {
    display: none;
  }
  .header-search-form input {
    width: 100%;
  }
}

@media (max-width: 992px) {
  /* Sliders Expand Full Width */
  .collection-slider,
  .product-slider,
  .offers-slider,
  .brands-slider {
    width: 100% !important;
    margin: 0 !important;
  }

  /* Hide custom side arrows on sliders - use swipe instead on touch devices */
  .product-slider .owl-nav,
  .cart-upsell-slider .owl-nav {
    display: none !important;
  }

  /* Feature Grid wrap */
  .product-features-row .feature-item {
    padding: 10px !important;
    margin-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
  }

  /* Shop Page Adjustments */
  .shop-collection-slider .owl-stage-outer {
    padding: 15px 0;
  }
  .shop-collection-card {
    width: 140px;
    height: 55px;
  }
  .shop-collection-card img {
    width: 80px !important;
    height: 80px !important;
    left: -15px;
    top: -10px;
  }
  .shop-collection-card span {
    font-size: 13px;
  }

  /* Cart Offcanvas */
  .nutraj-cart-offcanvas {
    width: 70% !important;
  }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
  .main-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .marquee-wrapper {
    height: 26px;
    font-size: 11px;
    padding: 4px 10px;
  }
  .top-bar {
    display: none !important;
  }

  /* Collection Grid */
  .collection-card {
    height: 160px;
    padding: 12px;
  }
  .collection-img {
    height: 100px;
  }
  .collection-name {
    font-size: 14px;
  }

  /* Overlapping elements normalize */
  .stats-box {
    position: relative;
    top: 0;
    transform: none;
    margin: 20px auto !important;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 20px 0;
  }
  .stats-number {
    font-size: 24px !important;
  }
  .stats-label {
    font-size: 10px !important;
  }

  .combo-section .combo-title {
    font-size: 22px;
    text-align: center;
  }
  .combo-desc {
    text-align: center;
    font-size: 14px;
  }
  .combo-card-outer {
    flex-direction: column;
  }
  .combo-img-box {
    width: 100%;
    height: 220px;
  }

  .store-img {
    margin-bottom: 20px;
  }
  .store-text-box {
    padding-left: 0 !important;
    text-align: center;
  }
}

/* Mobile Devices (480px, 430px, 414px, 375px, 360px) */
@media (max-width: 480px) {
  .main-title {
    font-size: 20px;
  }
  .brand-logo {
    max-width: 100px;
  }
  .header-icons {
    gap: 8px !important;
  }
  .header-icon-box {
    font-size: 18px;
  }
  .hero-slider-wrapper .marquee-wrapper marquee {
    font-size: 10px;
  }

  /* Stats grid shift for small mobile */
  .stats-box .col-4 {
    border: none !important;
    margin-bottom: 10px;
  }
  .stats-box .row {
    flex-direction: column;
  }

  /* Purpose section tight spacing */
  .purpose-card {
    margin-top: 30px;
  }
  .purpose-circle {
    width: 70px !important;
    height: 70px !important;
    top: -35px !important;
  }
  .purpose-title {
    font-size: 14px !important;
    margin-top: 35px !important;
  }
}

/* Mobile Large (414px and below - iPhone Max series) */
@media (max-width: 767px) {
  /* Enforce Hard Boundaries against rogue overflowing items */
  html,
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .container {
    max-width: 100vw !important;
    overflow-x: hidden;
  }

  /* Nav Header icons */
  .header-icons {
    gap: 10px !important;
    flex-wrap: nowrap;
  }
  .header-icon-box {
    margin-left: 0 !important;
    font-size: 20px;
  }
  .brand-logo {
    max-width: 110px;
  }

  /* Feature items */
  .product-features-row .feature-item {
    width: 50%;
    border-right: none;
  }

  /* Shop by Category Exact Nutraj Clone */
  .shop-by-category {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    margin-top: 15px !important;
  }
  .shop-by-category h2 {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }
  .shop-by-category .d-flex {
    justify-content: flex-start !important;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    padding-left: 5px; /* Slight offset for first item */
    gap: 15px !important;
    scrollbar-width: none;
  }
  .shop-by-category .d-flex::-webkit-scrollbar {
    display: none;
  }
  .cat-box {
    width: 48% !important;
    min-width: 48% !important;
    height: 120px !important;
    border-radius: 12px !important;
    border: 1px solid #731a2b !important; /* Uniform subtle maroon border */
    background: #fff !important;
    padding-top: 15px;
  }
  .cat-icon-wrap {
    width: 50px !important;
    height: 50px !important;
    font-size: 30px !important;
    border: none !important; /* Remove circle */
    margin-bottom: 10px !important;
  }
  .cat-title {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #111 !important;
  }

  /* Brands Slider Redesign (Nutraj) */
  .brands-slider .owl-item {
    padding: 20px 0;
  }
  .brand-box {
    width: 85px !important;
    height: 85px !important;
    border-radius: 20px !important;
    padding: 10px !important;
    transform: scale(0.85);
    background: #fff;
    opacity: 0.9;
  }
  .brands-slider .owl-item.center .brand-box {
    transform: scale(1.35) !important;
    width: 100px !important;
    height: 100px !important;
    opacity: 1;
    z-index: 100;
    box-shadow: 0 0 30px 10px rgba(255, 0, 0, 0.15) !important;
    border-color: #fff !important;
  }
  .brand-box img {
    max-height: 50px !important;
  }
  .brands-subtext {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #444 !important;
    padding: 0 20px;
    margin-top: 25px !important;
  }

  /* Product card layout shrink */
  .Sweettree-product-card {
    padding: 10px 8px;
  }
  .product-img-box {
    height: 140px;
    margin-bottom: 5px;
  }
  .product-name {
    font-size: 12px;
    line-height: 1.3;
    height: 32px;
    margin-bottom: 5px;
  }
  .brand-text {
    font-size: 10px;
  }
  .current-price {
    font-size: 16px;
  }
  .per-gram {
    display: block;
    margin-top: 2px;
    font-size: 10px;
  }
  .Sweettree-btn-cart {
    font-size: 11px;
    padding: 6px;
  }

  .stats-box {
    width: 100%;
  }

  .stats-box .col-4 {
    width: 100%;
  }

  /* Collection Categories */
  .collection-card {
    height: 140px;
    padding: 15px;
    width: 100% !important;
    margin-left: 0;
    margin-right: 0;
  }
  .collection-img {
    height: 90px;
    right: 0;
    top: 15px;
  }
  .collection-name {
    font-size: 14px;
    bottom: 10px;
    left: 15px;
  }

  .store-section {
    padding: 30px 0;
  }

  .combo-title {
    font-size: 20px;
  }

  .testimonial-quote {
    font-size: 14px;
  }

  /* Product Details Quantity & Variants */
  .detail-qty-selector {
    height: 48px !important;
    width: 130px !important;
  }
  .qty-btn {
    font-size: 18px !important;
    width: 35px !important;
  }
  .variant-box {
    min-width: 120px !important;
    padding: 10px 12px !important;
  }
  .variant-scroll-mobile {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px;
  }
  .variant-scroll-mobile::-webkit-scrollbar {
    display: none;
  }
  .pincode-box {
    border-radius: 6px !important;
    padding: 4px !important;
  }
  .pincode-box input {
    font-size: 13px;
    padding-left: 10px !important;
  }
  .pincode-box button {
    width: 170px !important;
    padding: 10px !important;
    font-size: 13px !important;
  }

  /* Optimized Mobile Pricing Block */
  .detail-price {
    font-size: 28px !important;
  }
  .pricing-block .d-flex.align-items-center.flex-wrap {
    gap: 15px !important;
  }
  .mrp-text {
    font-size: 12px !important;
    margin-bottom: 2px;
  }
  .save-amount {
    font-size: 14px !important;
  }
  .unit-price {
    font-size: 11px !important;
  }

  /* Horizontal Scrollable Tabs */
  .premium-tabs-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    border-bottom: 1px solid #eee;
  }
  .custom-tab-btn {
    font-size: 14px !important;
    padding: 8px 12px !important;
  }
  .custom-tab-btn::after {
    bottom: -1px;
  }
  .divider-line {
    display: none !important;
  }

  /* Breadcrumb Wrapping */
  .breadcrumb-item {
    font-size: 11px;
  }

  /* Cart Layout Tweaks */
  .cart-item-title {
    font-size: 11px;
    margin-bottom: 4px;
  }
  .cart-item-img-box {
    width: 50px;
    height: 50px;
    padding: 2px;
  }
  .cart-qty-selector {
    height: 24px;
  }
  .cart-qty-selector .qty-btn {
    width: 20px;
    font-size: 14px;
  }
  .cart-qty-selector .qty-input {
    width: 20px;
    font-size: 11px;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }
  .cart-item-remove {
    right: -2px;
    top: 10px;
    width: 16px;
    height: 16px;
    font-size: 8px;
  }
  .btn-place-order-nav {
    padding: 10px;
    font-size: 13px;
  }

  .whole-spices-section h2 {
    font-size: 26px !important;
    margin-bottom: 25px !important;
  }

  .trust-item:nth-child(2n) {
    background-image: none;
  }

  /* Shop By Purpose Mobile Fix */
  .purpose-card {
    min-height: 120px !important;
    padding: 15px !important;
    border-radius: 20px !important;
    margin-top: 40px; /* Space for the overlapping circle */
  }
  .purpose-circle {
    width: 80px !important;
    height: 80px !important;
    top: -40px !important;
  }
  .purpose-circle img {
    width: 45px !important;
    height: 45px !important;
  }
  .purpose-title {
    font-size: 16px !important;
    margin-top: 45px !important;
  }
  .hover-text {
    font-size: 12px !important;
  }
  .purpose-default {
    padding-bottom: 20px !important;
  }

  .shop-by-purpose-section {
    padding: 30px 0;
  }

  .shop-by-purpose-section p {
    margin-bottom: 0 !important;
  }

  .store-title {
    font-size: 24px;
  }

  .testimonials-section {
    padding: 15px 0 40px;
  }

  .testimonials-section h2 {
    font-size: 22px;
  }

  .store-desc {
    max-width: 100%;
  }

  .spice-slider .owl-item {
    padding: 0 9px;
  }

  .shop-collection-slider .item {
    padding: 0 10px;
  }

  .shop-collection-slider .owl-nav {
    width: calc(100% + 22px);
    left: -8px;
  }

  .pagination-wrapper {
    margin: 15px 0 !important;
  }

  .nutraj-cart-offcanvas {
    width: 90% !important;
  }

  .btn-place-order {
    padding: 9px 14px;
  }

  .main-footer .mb-5 {
    margin-bottom: 30px !important;
  }
}

/* Small Desktop / Laptop Adjustments for Shop Grid */
@media (min-width: 993px) and (max-width: 1180px) {
  #shopProductGrid .col {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (max-width: 1024px) {
  .shop-collection-card {
    width: 120px !important;
    height: 50px !important;
  }
  .shop-collection-card img {
    width: 65px !important;
    height: 65px !important;
    left: -10px;
  }
}

/* Mobile Default (390px, 375px, 360px) */
@media (max-width: 767px) {
  /* --- NEW: Shop Mobile Design (Nutraj Style) --- */

  /* Mobile Sale Banner Marquee */
  .mobile-sale-banner {
    background-color: #5e1a29; /* Nutraj Maroon */
    color: #fff !important;
    padding: 6px 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 10px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    margin-top: 25px;
  }
  .marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
    color: #fff !important;
  }
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  /* Mobile Filter Bar & Buttons */
  .mobile-filter-bar {
    padding: 10px 0;
    z-index: 100;
    background: #fff;
  }
  .m-filter-btn {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
  }
  .m-filter-btn:active {
    background-color: #f1f1f1;
  }

  /* Shop Collection Pills Refinement */
  .shop-collection-slider-wrapper {
    margin: 15px 0 25px !important;
    padding: 0 10px;
  }
  .shop-collection-card {
    border: 1px solid #eee !important;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 15px !important;
    border-radius: 12px !important;
    color: #5e1a29 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    text-decoration: none !important;
    min-height: 70px;
    position: relative;
    overflow: visible;
    width: 100% !important;
  }
  .shop-collection-card img {
    background: #fff;
    border-radius: 50%;
    padding: 3px;
    width: 40px !important;
    height: 40px !important;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .shop-collection-card.active {
    background: #5e1a29 !important;
    color: #fff !important;
    border-color: #5e1a29 !important;
  }

  /* 2-Column Product Grid Adjustments */
  #shopProductGrid .col {
    padding: 5px !important; /* Tighter gutters for mobile grid */
  }
  #shopProductGrid .Sweettree-product-card {
    padding: 0 !important;
    border-radius: 12px !important;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  #shopProductGrid .product-img-box {
    height: 140px !important;
    padding: 15px !important;
    margin-top: 5px !important;
    border-bottom: 1px solid #f0f0f0;
  }
  #shopProductGrid .product-img-box img {
    max-height: 110px !important;
  }
  #shopProductGrid .product-name {
    font-size: 11.5px !important;
    height: 38px !important;
    padding: 0 10px !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
    font-weight: 500 !important;
  }
  #shopProductGrid .brand-text {
    font-size: 8.5px !important;
  }
  #shopProductGrid .rating-badge {
    font-size: 9px !important;
    padding: 1px 4px !important;
  }
  #shopProductGrid .product-meta {
    padding: 10px 10px 5px !important;
  }
  #shopProductGrid .product-pricing {
    padding: 0 10px 12px !important;
    font-size: 11px !important;
  }
  #shopProductGrid .current-price {
    font-size: 15px !important;
    display: block !important;
    margin-top: 2px !important;
  }
  #shopProductGrid .Sweettree-btn-cart {
    margin: 0 10px 12px !important;
    padding: 6px 20px !important;
    font-size: 12px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    width: auto !important;
  }

  /* Sticky Bottom Navigation */
  .m-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000; /* Nutraj Black Bottom Nav */
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 1050; /* Lower than offcanvas which is 1060+ */
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
  }
  .m-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #888 !important;
    text-decoration: none !important;
    font-size: 10px;
    font-weight: 700;
    gap: 4px;
    transition: 0.3s;
    flex: 1;
  }
  .m-nav-item i {
    font-size: 20px;
  }
  .m-nav-item.active {
    color: #fff !important;
  }
  .m-nav-promo {
    color: #fff !important;
  }
  .m-nav-promo i {
    color: #ffb800; /* Gold/Yellow for promo icon */
  }

  /* Filter Drawer Refinements */
  .mobile-filter-drawer {
    height: 80vh !important;
    border-radius: 20px 20px 0 0 !important;
  }

  /* Global Mobile Padding for bottom nav */
  body {
    padding-bottom: 59px !important;
  }

  /* Mobile View Toggles */
  .m-view-toggle-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999 !important;
    border: none !important;
    background: transparent !important;
    transition: 0.2s;
  }
  .m-view-toggle-btn.active {
    color: #000 !important;
    background: #f0f0f0 !important;
    border-radius: 4px !important;
  }

  /* --- NEW: Mobile List View Fix (Nutraj Style) --- */

  #shopProductGrid.list-view-active {
    display: block !important;
  }

  #shopProductGrid.list-view-active .col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 10px !important;
    display: block !important;
  }

  #shopProductGrid.list-view-active .Sweettree-product-card {
    flex-direction: row !important;
    min-height: auto !important;
    height: auto !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid #eee !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    align-items: center !important;
    display: flex !important;
  }

  #shopProductGrid.list-view-active .product-img-box {
    flex: 0 0 110px !important;
    height: 110px !important;
    min-width: 130px !important;
    padding: 10px !important;
    margin: 0 !important;
    border-radius: 10px !important;
    background: #fff !important;
    border: 1px solid #f0f0f0 !important;
  }

  #shopProductGrid.list-view-active .product-img-box img {
    max-height: 85px !important;
    object-fit: contain !important;
  }

  #shopProductGrid.list-view-active .product-details-content {
    flex: 1 !important;
    padding-left: 15px !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
  }

  #shopProductGrid.list-view-active .product-meta {
    padding: 0 !important;
    margin-bottom: 4px !important;
    width: 100% !important;
    max-width: none !important;
  }

  #shopProductGrid.list-view-active .brand-text {
    font-size: 10px !important;
    letter-spacing: 0.5px !important;
  }

  #shopProductGrid.list-view-active .rating-badge {
    font-size: 9px !important;
    padding: 1px 4px !important;
  }

  #shopProductGrid.list-view-active .product-name {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    padding: 0 !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
    height: auto !important;
    color: #333 !important;
  }

  #shopProductGrid.list-view-active .product-pricing {
    padding: 0 !important;
    font-size: 13px !important;
    margin-bottom: 8px !important;
    width: 100% !important;
  }

  #shopProductGrid.list-view-active .current-price {
    font-size: 16px !important;
    color: #000 !important;
  }

  #shopProductGrid.list-view-active .Sweettree-btn-cart {
    width: auto !important;
    min-width: 110px !important;
    padding: 6px 15px !important;
    font-size: 11px !important;
    margin: 0 !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
  }

  #shopProductGrid.list-view-active .product-tags {
    top: 5px !important;
    left: 5px !important;
    width: 130px !important;
  }

  .tag-left,
  .tag-right {
    clip-path: none;
  }

  .recent-blogs-section {
    padding-bottom: 25px !important;
  }
}

/* ========================================================================= */
/*                              ABOUT PAGE STYLES                            */
/* ========================================================================= */

.about-hero-banner {
  background: url("../images/banner_slider_image3.jpg") center/cover no-repeat;
  min-height: 280px;
}
.about-hero-overlay {
  background: rgba(0, 0, 0, 0.65);
}
.about-hero-content {
  padding-top: 80px;
  padding-bottom: 50px;
}
.about-hero-title {
  font-size: 42px;
  letter-spacing: 1px;
}
.about-breadcrumb {
  font-size: 15px;
}

.about-story-img-wrap {
  z-index: 2;
}
.about-story-img {
  border: 6px solid #fff;
  object-fit: cover;
}
.about-story-bg-shape {
  background-color: #203d74;
  width: 85%;
  height: 90%;
  bottom: -20px;
  right: 0;
  z-index: 1;
}
.about-story-badge {
  background-color: #fcf6f7;
  /* color: #742431; */
  color: #203d74;
  font-size: 12px;
  border: 1px solid rgba(116, 36, 49, 0.2);
  letter-spacing: 1px;
}
.about-story-title {
  color: #203d74;
  font-size: 36px;
  line-height: 1.3;
}
.about-story-text {
  line-height: 1.8;
  font-size: 15px;
}
.about-feature-icon-wrapper {
  width: 45px;
  height: 45px;
  background-color: #203d74;
  flex-shrink: 0;
  font-size: 18px;
}
.about-feature-title {
  font-size: 15px;
  color: #111;
}
.about-feature-subtitle {
  font-size: 12px;
}

.about-advantage-badge {
  background-color: #fff;
  color: #203d74;
  font-size: 12px;
  border: 1px solid #203d74;
  letter-spacing: 1px;
}
.about-advantage-title {
  color: #111;
  font-size: 32px;
}
.about-advantage-card {
  transition: transform 0.3s;
  cursor: pointer;
  background: #fff;
}
.about-advantage-card:hover {
  transform: translateY(-10px);
}
.about-advantage-icon-box {
  width: 70px;
  height: 70px;
  background: #fafafa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}
.about-advantage-icon {
  width: 40px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.about-advantage-card-title {
  font-size: 17px;
  color: #222;
}
.about-advantage-card-text {
  font-size: 14px;
  line-height: 1.6;
}

.about-cta-container {
  min-height: 400px;
}
.about-cta-bg-img {
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.about-cta-bg-overlay {
  background: linear-gradient(
    to right,
    rgba(0, 76, 3, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 2;
}
.about-cta-content {
  z-index: 3;
  min-height: 400px;
}
.about-cta-badge {
  letter-spacing: 1.5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
  background: rgba(0, 0, 0, 0.2);
}
.about-cta-title {
  font-size: 36px;
  line-height: 1.3;
}
.about-cta-text {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}
.about-cta-btn-primary {
  background-color: #bfa38a;
  color: #fff;
  transition: all 0.3s;
}
.about-cta-btn-primary:hover {
  background-color: #a3856a;
  transform: translateY(-2px);
  color: #fff;
}
.about-cta-btn-outline {
  transition: all 0.3s;
}
.about-cta-btn-outline:hover {
  background-color: #fff;
  color: #004c03;
  transform: translateY(-2px);
}

.about-mission-section {
  position: relative;
}
.about-mission-img-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.about-mission-img {
  max-height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-mission-img-wrap:hover .about-mission-img {
  transform: scale(1.03);
}
.about-vision-img-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.about-vision-img {
  max-height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-vision-img-wrap:hover .about-vision-img {
  transform: scale(1.03);
}
.about-mission-badge {
  background-color: rgba(94, 26, 41, 0.06);
  color: #742431;
  font-size: 13px;
  letter-spacing: 1px;
}
.about-vision-badge {
  background-color: rgba(0, 76, 3, 0.06);
  color: #004c03;
  font-size: 13px;
  letter-spacing: 1px;
}
.about-mission-title {
  color: #111;
  font-size: 32px;
  line-height: 1.3;
}
.about-mission-text {
  line-height: 1.8;
  font-size: 15px;
}

/* ========================================================================= */
/*                              CONTACT PAGE STYLES                          */
/* ========================================================================= */

.contact-hero-section {
  padding: 60px 0 30px;
}
.contact-hero-title {
  font-size: 46px;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: #222;
  margin-bottom: 20px;
  font-weight: 500;
}
.contact-hero-subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 5px;
}
.contact-hero-time {
  font-size: 16px;
  color: #444;
}

.contact-form-section {
  padding: 20px 0 60px;
}
.contact-container-bg {
  max-width: 950px;
  margin: 0 auto;
}
.contact-sidebar {
  background-color: #742431;
  color: #fff;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  min-height: 480px;
  box-shadow: 0 10px 30px rgba(116, 36, 49, 0.2);
  position: relative;
  z-index: 2;
}
.contact-sidebar-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}
.contact-query-list li {
  margin-bottom: 12px;
}
.contact-query-list a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s;
}
.contact-query-list a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.contact-query-list a.active {
  background-color: #fff;
  color: #742431;
  font-weight: 600;
}
.contact-sidebar-divider {
  border-color: rgba(255, 255, 255, 0.3);
  margin: 20px 0;
}
.contact-faq-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: block;
  font-weight: 500;
}
.contact-faq-link:hover {
  color: #f1f1f1;
}

.contact-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.contact-social-icons a {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  z-index: 1;
}
.about-cta-bg-overlay {
  background: linear-gradient(to right, rgb(0 61 111) 0%, #2c4e812e 100%);
  z-index: 2;
}
.about-cta-content {
  z-index: 3;
  min-height: 400px;
}
.about-cta-badge {
  letter-spacing: 1.5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
  background: rgba(0, 0, 0, 0.2);
}
.about-cta-title {
  font-size: 36px;
  line-height: 1.3;
}
.about-cta-text {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}
.about-cta-btn-primary {
  background-color: #bfa38a;
  color: #fff;
  transition: all 0.3s;
}
.about-cta-btn-primary:hover {
  background-color: #a3856a;
  transform: translateY(-2px);
  color: #fff;
}
.about-cta-btn-outline {
  transition: all 0.3s;
}
.about-cta-btn-outline:hover {
  background-color: #fff;
  color: #004c03;
  transform: translateY(-2px);
}

.about-mission-section {
  position: relative;
}
.about-mission-img-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.about-mission-img {
  max-height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-mission-img-wrap:hover .about-mission-img {
  transform: scale(1.03);
}
.about-vision-img-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.about-vision-img {
  max-height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-vision-img-wrap:hover .about-vision-img {
  transform: scale(1.03);
}
.about-mission-badge {
  background-color: rgba(94, 26, 41, 0.06);
  color: #203d74;
  font-size: 13px;
  letter-spacing: 1px;
}
.about-vision-badge {
  background-color: rgba(0, 76, 3, 0.06);
  color: #203d74;
  font-size: 13px;
  letter-spacing: 1px;
}
.about-mission-title {
  color: #111;
  font-size: 32px;
  line-height: 1.3;
}
.about-mission-text {
  line-height: 1.8;
  font-size: 15px;
}

/* ========================================================================= */
/*                              CONTACT PAGE STYLES                          */
/* ========================================================================= */

.contact-hero-section {
  padding: 60px 0 30px;
}
.contact-hero-title {
  font-size: 46px;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: #222;
  margin-bottom: 20px;
  font-weight: 500;
}
.contact-hero-subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 5px;
}
.contact-hero-time {
  padding: 20px 0;
  background-color: #f7f8f9;
}
.contact-wrapper-box {
  position: relative;
}
.contact-main-body {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 50px 50px 80px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
  width: 65%;
}
.contact-sidebar {
  width: 33%;
  background: linear-gradient(90deg, #304473 3.31%, #1a58b2 100%);
  border-radius: 17.418px;
  color: #fff;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  margin-right: -50px;
}
.contact-sidebar-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}
.contact-query-list li {
  margin-bottom: 15px;
}
.contact-query-list a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 30px;
  transition: all 0.3s;
}
.contact-query-list a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.contact-query-list a.active {
  background-color: #fff;
  color: #203d74;
  font-weight: 700;
}
.contact-sidebar-divider {
  border-color: rgba(255, 255, 255, 0.3);
  margin: 20px 0;
}
.contact-faq-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: block;
  font-weight: 600;
}
.contact-faq-link:hover {
  color: #f1f1f1;
}

.contact-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.contact-social-icons a {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
}
.contact-social-icons a:hover {
  background-color: #fff;
  color: #203d74;
  border-color: #fff;
}

@media (max-width: 767.98px) {
  .contact-wrapper-box {
    padding-left: 0;
  }
  .contact-sidebar {
    width: 100%;
    margin-right: 0;
    margin-bottom: -20px;
    min-height: auto;
  }
  .contact-main-body {
    width: 100%;
    padding: 40px 20px;
  }
}
.contact-form-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #111;
  font-family: "Poppins", sans-serif, inherit;
  letter-spacing: -0.5px;
}
.contact-query-form label {
  font-size: 12px;
  color: #333;
  font-weight: 600;
}
.contact-query-form .form-control {
  border-radius: 8px;
  border: 1px solid #aaa;
  box-shadow: none;
  font-size: 14px;
  padding: 12px 15px;
  color: #333;
}
.contact-query-form textarea.form-control {
  resize: none;
  height: 100px;
}
.contact-query-form .form-control:focus {
  /* border-color: #8c2436; */
  border-color: #203d74;
}
.contact-submit-btn {
  /* background-color: #8c2436; */
  background-color: #203d74;
  color: #fff;
  font-weight: 900;
  padding: 12px 45px;
  border-radius: 6px;
  font-size: 16px;
  transition: background-color 0.3s;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif, inherit;
  border: none;
}
.contact-submit-btn:hover {
  background-color: #203d74;
  color: #fff;
}

.contact-track-box {
  border: 1px solid #111;
  border-radius: 10px;
  padding: 10px 20px;
  background-color: #fff;
}
.track-icon-box {
  position: relative;
  display: inline-block;
}
.contact-enquire-btn {
  /* background-color: #8c2436; */
  background-color: #203d74;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 25px;
  border-radius: 6px;
  transition: all 0.3s;
  border: none;
  font-family: inherit;
}
.contact-enquire-btn:hover {
  background-color: #6a1b29;
  color: #fff;
}
.contact-map-section iframe {
  filter: grayscale(10%);
}

.track-text {
  line-height: 18px;
}

.blog-promo-banner img {
  border-radius: 12px;
  object-fit: cover;
}

/* BLOG WIDGETS */
.blog-widget {
  border: 1px solid #203d74;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  overflow: hidden;
}
.blog-widget-header {
  padding: 15px 10px;
  border-bottom: 2px solid #f9f9f9;
}
.blog-widget-title {
  font-size: 16px;
  font-weight: 800;
  color: #333;
  margin: 0;
}
.blog-widget-body {
  padding: 25px 10px;
}

.blog-social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.blog-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #203d74;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
}
.blog-social-icons a:hover {
  background: #470c1a;
  color: #fff;
}

.blog-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.blog-tag-pill {
  font-size: 10px;
  /* color: #5c1828; */
  color: #203d74;
  border: 1px solid #203d74;
  border-radius: 4px;
  padding: 4px 6px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
}
.blog-tag-pill:hover {
  /* background: #5c1828; */
  background: #203d74;
  color: #fff;
}

.blog-newsletter-text {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}
.blog-newsletter-sub {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
  display: block;
}
.blog-newsletter-input {
  width: 100%;
  height: 45px;
  border: 1px solid #ccc;
  font-size: 13px;
  padding: 0 15px;
  margin-bottom: 15px;
  outline: none;
  border-radius: 4px;
}
.blog-newsletter-input:focus {
  border-color: #5c1828;
}
.blog-newsletter-btn {
  width: 100%;
  height: 45px;
  background: #203d74;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
}
.blog-newsletter-btn:hover {
  background: #1c72b9;
}

/* BLOG PAGINATION */
.blog-pagination ul {
  margin-top: 50px;
  margin-bottom: 20px;
}
.blog-pagination li a,
.blog-pagination li span {
  font-size: 18px;
  text-decoration: none;
  color: #0066cc;
  font-family: inherit;
  transition: all 0.2s;
}
.blog-pagination li.active a {
  color: #000;
  font-weight: 800;
}
.blog-pagination li a:hover {
  color: #004499;
}
.blog-pagination li span {
  color: #333;
}
.blog-pagination .next {
  font-weight: 500;
}

/* ========================================================================= */
/*                              BLOG DETAILS PAGE STYLES                     */
/* ========================================================================= */

.blog-details-section {
  padding: 60px 0;
  background-color: #fff;
}

/* Breadcrumbs (Professional Style) */
.blog-breadcrumb {
  margin-bottom: 30px;
  font-size: 14px;
  color: #666;
}
.blog-breadcrumb a {
  color: #203d74;
  font-weight: 600;
}
.blog-breadcrumb .breadcrumb-separator {
  margin: 0 10px;
  color: #ccc;
}

/* Article Header */
.blog-details-header {
  margin-bottom: 40px;
}
.blog-details-cat {
  display: inline-block;
  padding: 6px 15px;
  background: rgba(94, 26, 41, 0.08);
  color: #203d74;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.blog-details-title {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}
.blog-details-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}
.blog-details-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-details-meta i {
  color: #203d74;
}

/* Featured Image */
.blog-details-thumb {
  margin-bottom: 45px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.blog-details-thumb img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* Rich Content Typography */
.blog-details-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}
.blog-details-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin: 40px 0 20px;
}
.blog-details-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 30px 0 15px;
}
.blog-details-content ul {
  margin-bottom: 25px;
  padding-left: 20px;
}
.blog-details-content ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
  position: relative;
  list-style: disc;
}
.blog-details-blockquote {
  margin: 40px 0;
  padding: 40px;
  background: #fcf6f7;
  /* border-left: 5px solid #5e1a29; */
  border-left: 5px solid #203d74;
  border-radius: 0 12px 12px 0;
  position: relative;
}
.blog-details-blockquote p {
  font-style: italic;
  font-size: 20px;
  /* color: #5e1a29; */
  color: #203d74;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.5;
}
.blog-details-blockquote i {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 40px;
  color: #203d74;
  opacity: 0.1;
}

/* Share & Tags Box */
.blog-details-footer {
  padding: 30px 0;
  margin-top: 50px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.social-share-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
.share-title {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}
.share-links {
  display: flex;
  gap: 10px;
}
.share-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
}
.share-links a:hover {
  /* background: #5e1a29; */
  background: #203d74;
  color: #fff;
  transform: translateY(-3px);
}

/* Author Box */
.author-bio-card {
  background: #fafafa;
  padding: 35px;
  border-radius: 16px;
  margin-top: 40px;
  display: flex;
  gap: 25px;
}
.author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
.author-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

/* Related Posts */
.related-posts-section {
  margin-top: 60px;
}
.related-posts-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #111;
}
.mini-blog-card {
  transition: 0.3s;
}
.mini-blog-card:hover {
  transform: translateY(-5px);
}
.mini-blog-img {
  border-radius: 12px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}
.mini-blog-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  display: block;
}

/* Sidebar Recent Posts Widget */
.recent-post-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.recent-post-item:last-child {
  margin-bottom: 0;
}
.recent-post-thumb {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent-post-info h6 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.4;
}
.recent-post-info span {
  font-size: 11px;
  color: #999;
}

@media (max-width: 991.98px) {
  .blog-details-title {
    font-size: 32px;
  }
  .author-bio-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ========================================================================= */
/*                          ADDITIONAL RESPONSIVE FIXES                      */
/* ========================================================================= */

/* Shop Details Mobile Optimization */
@media (max-width: 768px) {
  .product-gallery-wrapper {
    margin-bottom: 30px;
  }
  .main-image-container .item {
    height: 350px !important;
  }
  .product-title {
    font-size: 20px !important;
  }
  .detail-qty-selector {
    width: 100% !important;
    max-width: 150px;
  }
  .variant-scroll-mobile {
    gap: 10px !important;
  }
  .premium-tabs-wrapper {
    border-bottom: 2px solid #f1f1f1;
  }
  .custom-tab-btn {
    font-size: 13px !important;
    padding: 10px 15px !important;
  }
}

/* About Page Mobile Fixes */
@media (max-width: 768px) {
  .about-hero-section h1 {
    font-size: 32px !important;
  }
  .vision-mission-card {
    margin-bottom: 20px;
  }
  .stats-counter-item {
    border-right: none !important;
    border-bottom: 1px solid #eee;
    padding: 20px 0 !important;
  }
}

/* Contact Page Mobile Fixes */
@media (max-width: 768px) {
  .contact-info-widget {
    margin-bottom: 20px;
  }
  .contact-map-wrapper iframe {
    height: 300px !important;
  }
}

/* Extra Tight Mobile Adjustments (360px - 414px) */
@media (max-width: 430px) {
  .detail-price {
    font-size: 24px !important;
  }
  .save-amount {
    font-size: 14px !important;
  }
  .product-details-main .btn {
    font-size: 16px !important;
  }
  .premium-tabs-wrapper::-webkit-scrollbar {
    display: none;
  }
}

/* Blog & Blog Details Mobile Optimization */
@media (max-width: 992px) {
  .blog-archive-section col-lg-8,
  .blog-archive-section col-lg-4,
  .blog-details-main col-lg-8,
  .blog-details-main col-lg-4 {
    width: 100% !important;
  }
  .blog-sidebar {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .blog-details-title {
    font-size: 26px !important;
  }
  .blog-details-meta {
    flex-wrap: wrap;
    gap: 10px !important;
  }
  .blog-card {
    margin-bottom: 20px !important;
  }

  .about-story-title {
    font-size: 27px;
  }

  .about-cta-title {
    font-size: 26px;
  }

  .contact-hero-title {
    font-size: 32px;
  }

  .contact-hero-time {
    padding: 20px 0 0;
    margin-bottom: 0;
  }

  .contact-query-form .form-control {
    padding: 9px 15px;
  }
  .contact-query-form textarea.form-control {
    height: 80px;
  }

  ul.contact-query-list {
    margin-bottom: 000;
  }
  .contact-query-list li:last-child {
    margin-bottom: 0;
  }
  .contact-query-list a {
    padding: 0px 24px;
  }
  .contact-social-icons {
    margin-top: 20px;
  }
  .contact-enquire-btn {
    padding: 6px 25px;
  }

  .contact-form-section {
    padding: 20px 0;
  }

  .contact-map-section {
    margin: 30px 0 !important;
  }

  .contact-map-section iframe {
    height: 300px;
  }
  .tags-section {
    padding: 30px 0 !important;
  }

  .blog-archive-section {
    padding: 30px 0 !important;
  }
}

@media (max-width: 480px) {
  .logo-circle-mini {
    width: 30px !important;
    height: 30px !important;
  }
  .blog-meta-bold {
    font-size: 11px !important;
  }
  .blog-meta-date {
    font-size: 9px !important;
  }
  .blog-card .blog-content-box {
    padding: 15px !important;
  }
}

/* Featured Video Section */
.featured-video-section {
  background-color: #fff;
  padding: 60px 0;
}

.video-container {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  background: #000;
  border-radius: 25px; /* Premium rounded corners */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* Premium shadow */
  border: 4px solid #fff;
}

.video-wrapper {
  position: relative;
  padding-bottom: 450px;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .video-container {
    max-width: 300px; /* Slimmer on mobile for better fit */
  }
}
/* Social Commerce Card Styling */
.social-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid #eee;
  box-sizing: border-box; /* Ensure borders don't expand the card */
  width: 100%; /* Ensure it fills the Owl Carousel item container */
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.social-media-box {
  position: relative;
  height: 450px; /* Fixed height as requested */
  background: #000;
  overflow: hidden;
}

.social-media-box img,
.social-media-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  transform: scale(
    1.5
  ); /* Aggressive zoom to ensure black bars are 100% hidden on all screens */
  transform-origin: center center;
}

.social-badge-top {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.social-rating-float {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #fff;
  color: #000;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.social-rating-float i {
  color: #ffb800;
}

.social-actions-float {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.social-action-btn {
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #555;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.3s;
}

.social-action-btn:hover {
  background: #c21c40;
  color: #fff;
}

.social-content {
  padding: 12px 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.social-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-shop-logo {
  width: 35px !important;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #eee;
  padding: 2px;
  flex-shrink: 0;
}

.social-product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  min-width: 0; /* important for truncation */
}

.social-title {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin: 0 0 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-price-box {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.social-actual-price {
  font-size: 14px;
  font-weight: 800;
  color: #1c72b9;
}

.social-mrp-strike {
  font-size: 11px;
  color: #999;
  text-decoration: line-through;
}

.social-arrow {
  font-size: 14px;
  color: #999;
  flex-shrink: 0;
}

.social-buy-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  transition: 0.3s;
}

.social-buy-btn:hover {
  background: #c21c40;
}

/* Social Slider Section */
.social-slider-section {
  padding: 80px 0;
  background-color: #fafafa;
}

/* Specific to Combo Section when using social cards */
.combo-section .social-card {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Stronger shadow on dark background */
}
