/* ==========================================================
   1. FONTS & ROOT VARIABLES
   ========================================================== */
@font-face {
  font-family: "GilroyLight";
  src: url("../fonts/gilroy/Gilroy-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap; 
}

@font-face {
  font-family: "GilroyExtraBold";
  src: url("../fonts/gilroy/Gilroy-ExtraBold.otf") format("opentype");
  font-weight: 800; 
  font-style: normal;
  font-display: swap; 
}

:root {
  --m-GilroyLight-font: "GilroyLight", sans-serif;
  --m-GilroyExtraBold-font: "GilroyExtraBold", sans-serif;
  --title-color: #B5610C;
  --text-darkSuccess: #2c4c2e;
  --pbmit-button-hover-color: #a37238;
  --background-color: #fcfbf7;
  --tab-background-color: #fcf5e4;
  --section-background-color: #f6f3e7;
  --primary-color: #b45309;
   --primary-titel-color: #52302e;
  --primary-hover: #92400e;
  --dark-green: #24341e;
  --light-bg-badge: #f3efe6;
  --border-color: #e5e7eb;
  --text-muted: #6b7280;
}

/* ==========================================================
   2. GLOBAL TYPOGRAPHY & BASE RESET
   ========================================================== */
body {
  font-family: var(--m-GilroyLight-font);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--m-GilroyLight-font);
  color: var(--primary-titel-color) !important;
}

section {
  padding: 40px 20px;
}

.color-primary {
  color: var(--title-color) !important;
}

footer {
  border-top: 1px solid #ddd !important;
}

.cart-qty-select {
  border: 1px solid #ddd !important;
}

.text-darksuccess {
  color: var(--text-darkSuccess) !important;
}

.bg-darksuccess,
.bg-darksuccess:hover,
.bg-darksuccess-hover:hover {
  background-color: var(--text-darkSuccess) !important;
}
.input-group .btn{
  z-index: 100;
}

.bg-darksuccess:hover {
  opacity: 0.9;
}

.bg-darksuccess-hover:hover {
  color: #fff !important;
}

.border-darksuccess {
  border-color: var(--text-darkSuccess);
}

.changeaddress {
  border: 1px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
}

#btnApplyCoupon {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  height: 50px !important;
}

.deleveryLocation i {
  color: var(--primary-color) !important;
}

.pointer {
  cursor: pointer !important;
}

.explore_img {
  opacity: 0.5;
}

.why_us {
  padding-bottom: 0 !important;
}

.xzoom-lens {
  width: 200px !important;
  height: 200px !important;
  border-radius: 50%;
}

.contact-form .contact-form {
  margin-bottom: 20px;
}

.pbmit-slider-three .pbmit-slider-item {
  background-color: transparent !important;
}

.pbmit-tab .pbmit-product-style-1 .pbmit-product-image img {
  max-width: 50px !important;
}

.site-header div.menubar,
.site-header div.addtocart {
  width: 45%;
}

.site-header div.logodiv {
  width: 10%;
}

/* ==========================================================
   3. COMPONENTS & LAYOUT MODULES
   ========================================================== */

/* Top Offer Bar (Marquee) */
.top-offer-bar {
  width: 100%;
  background: #2c4c2e;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
}

.top-offer-bar strong {
  color: #ffd54f;
}

.offer-slider {
  display: flex;
  width: max-content;
  animation: scroll 22s linear infinite;
}

.offer-item {
  font-size: 15px;
  font-weight: 500;
  padding-right: 80px;
  flex-shrink: 0;
}

.top-offer-bar:hover .offer-slider {
  animation-play-state: paused;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Product Grid & Cards */
.pbmit-heading-subheading {
  margin-bottom: 10px;
}

.product-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  padding: 0;
  border-radius: 16px;
  background-image: linear-gradient(rgba(252, 251, 250, 0.88), rgba(252, 251, 250, 0.88)), url("https://googleusercontent.com/image_generation_content/366");
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.product-card {
  background: #ffffff;
  border: 1px solid #ebdccb;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.image-container {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-bottom: 15px; */
}

.image-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-titel-color) !important;
  line-height: 1.4;
  margin-bottom: 8px;
  height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Product Tag Badges */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  width: fit-content;
}

.best-seller { background-color: #2e6930; }
.summer-special { background-color: #275229; }
.must-try { background-color: #1f4221; }
.trending { background-color: #1a381c; }

.rating {
  font-size: 0.85rem;
  color: #444;
  font-weight: 500;
  margin-bottom: 15px;
  min-height: 25px !important;
}

.rating i {
  color: #2c4c2e;
}

/* Select Box */
.select-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.select-wrapper select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #bda082;
  border-radius: 6px;
  background-color: #fffcf7;
  color: #444;
  font-size: 0.85rem;
  appearance: none;
  cursor: pointer;
}

.select-wrapper::after {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
  font-size: 0.8rem;
}

.price {
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.add-to-cart, .primarybtn {
  width: 100%;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.add-to-cart:hover {
  background-color: #8a5323;
  color: #fff !important;
}

/* Counter Image Section */
#counterimage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
}

#counterimage .main-card {
  width: 100%;
  height: 600px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  position: relative;
}

#counterimage .left-image-panel {
  width: 50%;
  height: 100%;
  background-image: url("../images/Group_5653.png");
  background-size: cover;
  background-position: left center;
  position: relative;
}

#counterimage .left-image-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to left, #f6e6ca 0%, rgba(246, 230, 202, 0) 100%);
}

#counterimage .right-content-panel {
  width: 50%;
  height: 100%;
  background-color: #f6e6ca;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  color: #333;
  text-align: center;
  position: relative;
}

#counterimage .text-container {
  margin-bottom: 30px;
}

#counterimage .main-title,
#counterimage .sub-title {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  color: #000 !important;
}

#counterimage .main-title {
  font-size: 45px;
}

#counterimage .counter-container {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

#counterimage .counter-digit {
  background-color: #a06730;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  width: 50px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  line-height: 1;
}

#counterimage .footer-text {
  font-size: 18px;
  margin: 0;
}

#counterimage .bee-icon {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 50px;
  opacity: 0.6;
}

#counterimage .farmer-art {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: auto;
  opacity: 0.8;
  pointer-events: none;
}

/* Info Box Components */
.pbmit-ihbox-style-8 .pbmit-ihbox-box {
  flex-direction: column;
}

.pbmit-ihbox-contents {
  margin-top: 10px;
  text-align: center;
}

.pbmit-ihbox-style-8 .pbmit-ihbox-icon,
.pbmit-ihbox-style-8 .pbmit-ihbox-box .pbmit-ihbox-icon::before {
  background-color: transparent !important;
}

.pbmit-ihbox-style-8 .pbmit-ihbox-icon-wrapper {
  width: 120px !important;
  height: 120px !important;
}

.pbmit-ihbox-style-8 .pbmit-element-title {
  font-weight: 600 !important;
  margin-bottom: 10px;
  font-size: 18px;
  font-family: var(--m-GilroyLight-font) !important;
}

.pbmit-ihbox-style-8 .pbmit-heading-desc {
  width: 80%;
  margin: auto;
}

/* Testimonial Section */
#testimonial {
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}

#testimonial *,
#testimonial-carousel-viewport * {
  box-sizing: border-box;
}

.testimonial-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-carousel-viewport {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.testimonial-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-carousel-viewport:active {
  cursor: grabbing;
}

.testimonial-carousel-viewport.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

#testimonial .testimonial-card {
  background-color: var(--pbmit-global-color);
  border: 1px solid var(--pbmit-global-color);
  border-radius: 24px;
  padding: 40px 30px;
  width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  flex-shrink: 0;
}

#testimonial .avatar-container {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#testimonial .avatar-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

#testimonial .author-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 20px 0;
}

#testimonial .quote {
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  color: #444444;
  line-height: 1.6;
  margin: 0;
}

.testimonial-arrow {
  display: flex !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s, transform 0.2s;
}

.testimonial-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.testimonial-arrow.prev { left: -15px; }
.testimonial-arrow.next { right: -15px; }

/* Footer Section */
#footer {
  background-color: #f8f5ec;
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
  padding-top: 60px;
  position: relative;
  box-sizing: border-box;
}

#footer * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#footer .footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

#footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr 1.2fr;
  gap: 30px;
  padding-bottom: 50px;
}

#footer .footer-logo img {
  max-height: 70px;
  margin-bottom: 15px;
}

#footer .footer-tagline {
  color: #555555;
  font-size: 13px;
  line-height: 1.7;
  max-width: 250px;
}

#footer .widget-title {
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 10px;
}

#footer .footer-links {
  list-style: none;
}

#footer .footer-links li {
  margin-bottom: 10px;
}

#footer .footer-links a {
  color: #444444;
  text-decoration: none;
  transition: color 0.2s ease;
}

#footer .footer-links a:hover {
  color: var(--pbmit-button-hover-color);
}

#footer .contact-info p {
  color: #444444;
  margin-bottom: 6px;
  font-size: 13px;
}

#footer .newsletter-form .input-group {
  position: relative;
  margin-bottom: 12px;
}

#footer .newsletter-form input {
  width: 100%;
  padding: 12px 18px;
  border: 1.5px solid #bd9b60;
  border-radius: 25px;
  background-color: transparent;
  font-size: 13px;
  outline: none;
  color: #333;
}

#footer .newsletter-form input::placeholder {
  color: #aa9575;
}

#footer .newsletter-form button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  color: #bd9b60;
  cursor: pointer;
}

#footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

#footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #5b3319;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

#footer .social-links a:hover {
  background-color: var(--pbmit-button-hover-color);
}

#footer .footer-bottom {
  background-color: #d6b382;
  padding: 20px 0;
  margin-top: 20px;
  position: relative;
}

#footer .footer-bottom::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  height: 25px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0 C150,90 350,-40 500,50 C650,140 900,-20 1200,40 L1200,120 L0,120 Z" fill="%23d6b382"></path></svg>');
}

#footer .bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer .copyright-text {
  color: #3d2b1b;
  font-size: 13px;
  font-weight: 500;
}

#footer .payment-badges span {
  display: inline-block;
  background: #ffffff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  color: #333;
  margin-left: 5px;
}

/* Floating WhatsApp Button */
#whatsapp-btn-wrapper {
  position: fixed;
  bottom: 25px;
  right: 50px;
  z-index: 99999;
}

#whatsapp-btn-wrapper .wa-float-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#whatsapp-btn-wrapper .wa-icon {
  width: 32px;
  height: 32px;
}

#whatsapp-btn-wrapper .wa-float-link:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.pbmit-progress-wrap {
  bottom: 90px;
}

/* Product View Container */
#product-view-container {
  color: #333333;
  margin: 0 auto;
  max-width: 1280px;
  box-sizing: border-box;
}

#product-view-container * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#product-view-container .pvc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

#product-view-container .pvc-gallery {
  display: flex;
  flex: 1 1 500px;
  gap: 15px;
}

#product-view-container .pvc-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 520px;
  overflow-y: auto;
}

#product-view-container .pvc-thumb {
  width: 60px;
  height: 60px;
  border: 1px solid #dcd6cd;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  padding: 2px;
  transition: border-color 0.2s ease;
}

#product-view-container .pvc-thumb.active,
#product-view-container .pvc-thumb:hover {
  border-color: #a36209;
}

#product-view-container .pvc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

#product-view-container .pvc-main-image {
  flex: 1;
  border: 1px solid #c9a464;
  border-radius: 12px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
}

#product-view-container .pvc-main-image img {
  max-width: 100%;
  max-height: 440px;
  object-fit: contain;
  box-shadow: none !important;
}

#product-view-container .pvc-details {
  flex: 1 1 450px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#product-view-container .pvc-title {
  font-size: 28px;
  font-weight: 600;
  color: #925c13;
}

#product-view-container .pvc-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #b57416;
  font-size: 14px;
}

#product-view-container .pvc-rating-score {
  color: #555555;
  margin-left: 5px;
  font-weight: 500;
}

#product-view-container .pvc-price-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#product-view-container .pvc-price {
  font-size: 26px;
  font-weight: 700;
  color: #222222;
}

#product-view-container .pvc-tax-info {
  font-size: 12px;
  color: #777777;
}

#product-view-container .pvc-emi-box {
  border: 1px solid #333333;
  border-radius: 6px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  width: fit-content;
  background: #ffffff;
}

#product-view-container .pvc-emi-highlight {
  background-color: #a3e635;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}

#product-view-container .pvc-member-banner {
  background: linear-gradient(135deg, #0e3b1f 0%, #175e32 100%);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid #a3e635;
}

#product-view-container .pvc-member-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#product-view-container .pvc-member-title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

#product-view-container .pvc-member-sub {
  font-size: 12px;
  opacity: 0.85;
}

#product-view-container .pvc-join-btn {
  background-color: #d8be5d;
  color: #1a1a1a;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}

#product-view-container .pvc-variants {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

#product-view-container .pvc-variant-card {
  border: 1px solid #b39257;
  background-color: #fffdf7;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

#product-view-container .pvc-variant-card.active {
  background-color: #9e5b0e;
  color: #ffffff;
  border-color: #9e5b0e;
}

#product-view-container .pvc-variant-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

#product-view-container .pvc-variant-price {
  font-size: 14px;
  font-weight: 700;
}

#product-view-container .pvc-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

#product-view-container .pvc-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #dcd6cd;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
}

#product-view-container .pvc-qty-btn {
  border: none;
  background: none;
  width: 36px;
  height: 42px;
  font-size: 16px;
  cursor: pointer;
  color: #666666;
}

#product-view-container .pvc-qty-input {
  width: 40px;
  border: none;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  outline: none;
}

#product-view-container .pvc-add-cart-btn {
  flex: 1;
  background-color: #b5600c;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-transform: uppercase;
  padding: 0 20px;
  transition: background 0.2s ease;
}

#product-view-container .pvc-add-cart-btn:hover {
  background-color: #964e08;
}

#product-view-container .pvc-accordion {
  border-top: 1px solid #dcd6cd;
  margin-top: 10px;
  padding-top: 15px;
}

#product-view-container .pvc-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #a36209;
  cursor: pointer;
  font-size: 15px;
}

/* Product Tabs */
#product-tabs-container {
  background-color: #f8f5ec;
  padding: 30px 20px;
  max-width: 1280px;
  margin: 0 auto;
  border: 1px solid #a6815d;
  border-radius: 15px;
}

#product-tabs-container .nav-tabs {
  border-bottom: 1px solid #e2e2e2;
  gap: 20px;
}

#product-tabs-container .nav-tabs .nav-link {
  border: none;
  background: transparent;
  color: #888888;
  font-weight: 600;
  font-size: 15px;
  padding: 0 0 10px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  margin-right: 20px;
}

#product-tabs-container .nav-tabs .nav-link:hover {
  color: #333333;
  border-color: transparent;
}

#product-tabs-container .nav-tabs .nav-link.active {
  color: #333333;
  border-bottom: 2px solid #333333;
  background: transparent;
}

#product-tabs-container .tab-pane {
  color: rgb(82, 48, 46) !important;
  font-size: 15px;
  line-height: 1.6;
}

/* Insta Reels & Carousel Section */
.insta-reels-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: var(--m-GilroyLight-font);
  text-align: center;
}

.section-title {
  color: #a67c37;
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.reels-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0;
  width: 100%;
  cursor: grab;
  user-select: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reels-container::-webkit-scrollbar {
  display: none;
}

.reels-container.active {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.reel-card {
  flex: 0 0 calc(25% - 12px);
  min-width: 240px;
  height: 425px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: #000;
  cursor: pointer;
}

.reel-card video,
.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.product-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}

.product-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 5px;
}

.product-overlay-card {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.prod-thumb {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  object-fit: cover;
}

.prod-info {
  display: flex;
  flex-direction: column;
}


.prod-name {
  font-size: 11px;
  font-weight: bold;
  color: #333;
}

.product-price,
.prod-price {
  color: #666;
  font-size: 11px;
}

.prod-price {
  margin-top: 2px;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, transform 0.2s;
}

.nav-btn:hover {
  background: #f8f8f8;
  transform: translateY(-50%) scale(1.05);
}

.prev-btn { left: -19px; }
.next-btn { right: -19px; }

/* Follow Instagram Section */
.geetaangan-insta-section {
  width: 100%;
}

.geetaangan-insta-section .row {
  max-width: 1100px;
  margin: auto;
}

.geetaangan-insta-section .row .img-card {
  padding: 5px;
  position: relative;
  overflow: hidden;
}

.geetaangan-insta-section .row img {
  width: 100%;
  height: 100%;
  max-height: 390px;
  height: 390px;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.geetaangan-insta-section .row .img-card i.pbmit-base-icon-instagram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 32px;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  pointer-events: none;
}

.geetaangan-insta-section .row .img-card::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.geetaangan-insta-section .row .img-card:hover::after {
  opacity: 1;
}

.geetaangan-insta-section .row .img-card:hover i.pbmit-base-icon-instagram {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.geetaangan-section-title {
  text-align: center;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Customer Reviews Module */
#customer-reviews-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 15px;
  color: #333333;
}

#customer-reviews-container * {
  box-sizing: border-box;
}

#customer-reviews-container .cr-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}

#customer-reviews-container .cr-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
  gap: 20px;
  flex-wrap: wrap;
}

#customer-reviews-container .cr-rating-overall {
  display: flex;
  flex-direction: column;
  gap: 4px;
}


#customer-reviews-container .cr-score-text {
  font-size: 13px;
  color: #555555;
  font-weight: 600;
}

#customer-reviews-container .cr-verified {
  color: #2ec4b6;
  font-size: 13px;
}

#customer-reviews-container .cr-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
  padding: 0 30px;
}

#customer-reviews-container .cr-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #777;
}

#customer-reviews-container .cr-progress {
  width: 120px;
  height: 8px;
  background-color: #eee;
  border-radius: 4px;
  overflow: hidden;
}

#customer-reviews-container .cr-progress-fill {
  height: 100%;
  background-color: #b5600c;
}

#customer-reviews-container .cr-toggle-btn {
  background-color: #b5600c;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#customer-reviews-container .cr-toggle-btn:hover {
  background-color: var(--pbmit-button-hover-color);
}

#customer-reviews-container .cr-form-wrapper {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

#customer-reviews-container .cr-form-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

#customer-reviews-container .cr-star-rating-select {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: #4f302d61;
  font-size: 22px;
  cursor: pointer;
  margin-bottom: 20px;
}
#customer-reviews-container .cr-star-rating-select .fa.fa-star-o,
#customer-reviews-container .cr-stars .fa.fa-star-0,.fa.fa-star-0{
    color: #4f302d61 !important;
}
#customer-reviews-container .cr-star-rating-select .fa.fa-star, 
#customer-reviews-container .cr-stars .fa.fa-star, .fa.fa-star{
  color: #b5600c;
}

#customer-reviews-container .cr-stars .fa.fa-star{
  font-size: 14px;
}

#customer-reviews-container .cr-form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#customer-reviews-container .cr-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #555555;
  margin-bottom: 6px;
  text-align: center;
}

#customer-reviews-container .cr-input,
#customer-reviews-container .cr-textarea {
  width: 100%;
  max-width: 420px;
  padding: 8px 12px;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  font-size: 13px;
  outline: none;
}

#customer-reviews-container .cr-input:focus,
#customer-reviews-container .cr-textarea:focus {
  border-color: #b5600c;
}

#customer-reviews-container .cr-textarea {
  height: 90px;
  resize: vertical;
}

#customer-reviews-container .cr-upload-box {
  width: 100%;
  max-width: 100px;
  height: 80px;
  border: 1px solid #dcdcdc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #777777;
  cursor: pointer;
  background-color: #fafafa;
  border-radius: 2px;
}

#customer-reviews-container .cr-disclaimer {
  font-size: 11px;
  color: #777777;
  text-align: center;
  max-width: 450px;
  margin: 15px auto;
  line-height: 1.4;
}

#customer-reviews-container .cr-form-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

#customer-reviews-container .cr-cancel-btn-secondary {
  background: #ffffff;
  border: 1px solid #b5600c;
  color: #b5600c;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
}

#customer-reviews-container .cr-submit-btn {
  background-color: #b5600c;
  border: none;
  color: #ffffff;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
}

#customer-reviews-container .cr-filter-section {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

#customer-reviews-container .cr-select {
  border: none;
  color: #b5600c;
  font-weight: 600;
  font-size: 13px;
  outline: none;
  background: transparent;
  cursor: pointer;
}

#customer-reviews-container .cr-review-item {
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

#customer-reviews-container .cr-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

#customer-reviews-container .cr-author {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b5600c;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

#customer-reviews-container .cr-review-date {
  font-size: 12px;
  color: #aaaaaa;
}

#customer-reviews-container .cr-review-heading {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #333333;
}

#customer-reviews-container .cr-review-body {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
}

/* Header & Navigation Styles */
.header-overlay {
  background: var(--pbmit-global-color) !important;
  border-bottom: 1px solid #ddd;
}

.cartHeading {
  display: flex;
  align-items: center;
}

.priceDetails .rounded-3, 
.priceDetails .card-header {
  border-radius: 15px !important;
  border: 0 !important;
}

.priceDetails .priceDetailsTitle {
  color: var(--title-color);
  position: relative;
  display: block;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8e8e8;
}

.loginTitle {
  position: relative;
}

.priceDetails .priceDetailsTitle::after, 
.loginTitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50px;
  height: 3px;
  background: #b87924;
  border-radius: 5px;
}

.priceDetails .totalamt,
.priceDetails #summary-grand-total {
  color: var(--title-color) !important;
}

.header-style-3 .pbmit-main-header-area {
  background-color: var(--pbmit-global-color) !important;
  width: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  border-radius: 0 !important;
}

.header-style-3 .pbmit-main-header-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Product Listing Full Image Box */
.full_image .product-card {
  overflow: hidden;
  padding: 0 !important;
  width: 100%;
}

.full_image .product-card .image-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.full_image .product-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.full_image .product-card:hover .image-container img {
  transform: scale(1.08);
}

.full_image .product-title {
  height: 25px;
}

.full_image .select-wrapper {
  margin-bottom: 5px !important;
}

.full_image .price,
.full_image .rating {
  margin-bottom: 5px;
}

#shoppingCartxx, #checkoutHeader {
  background: var(--section-background-color) !important;
}

.form-label {
  margin: 0 !important;
}

/* Checkout Module */
#checkoutHeader {
  min-height: 85vh;
}

#checkoutHeader .checkoutSteps .signupSteps ul {
  z-index: 1;
}

#checkoutHeader .checkoutSteps .ulLIne {
  border: 0.7px dashed #ddd !important;
  z-index: 0;
}

#checkoutHeader .checkoutSteps li {
  background-color: var(--section-background-color) !important;
  padding: 0 1rem;
  z-index: 1;
}

#checkoutHeader .checkoutSteps .stepNum {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #a5a5a5;
  color: #fff;
  transition: all 0.3s ease;
}

#checkoutHeader .checkoutSteps li.active .stepNum {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

#checkoutHeader .checkoutSteps li.active small {
  color: var(--primary-color);
}

#checkoutHeader .card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#checkoutHeader .summuryCard {
  background-color: #f8f9fa;
  border: none;
  border-radius: 0.5rem;
}

#checkoutHeader .form-control,
#checkoutHeader .form-select {
  border-color: #dee2e6;
  border-radius: 0.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#checkoutHeader .form-control:focus,
#checkoutHeader .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

#checkoutHeader .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 0.8;
}

#checkoutHeader .form-check-input {
  width: 1.25em;
  height: 1.25em;
  cursor: pointer;
}

#checkoutHeader .submitBtn, 
.allInformation .submitBtn {
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

#checkoutHeader .submitBtn:hover, 
.allInformation .submitBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3) !important;
}

#checkoutHeader .chengeBtn {
  border-radius: 50rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

#checkoutHeader .summary-items-list::-webkit-scrollbar {
  width: 4px;
}

#checkoutHeader .summary-items-list::-webkit-scrollbar-track {
  background: transparent;
}

#checkoutHeader .summary-items-list::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 4px;
}

#checkoutHeader .min-w-0 {
  min-width: 0;
}

.enterCode .btnsubmit {
  border: 1px solid #000 !important;
}

/* Product Trust Component */
#product-trust {
  margin: 30px 0;
}

#product-trust .trust-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

#product-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 180px;
}

#product-trust .trust-icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid #8b5a2b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5a2b;
  font-size: 15px;
  transition: 0.3s;
}

#product-trust .trust-item:hover .trust-icon {
  background: #8b5a2b;
  color: #fff;
  transform: translateY(-3px);
}

#product-trust .trust-content h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #2f2f2f;
}

#product-trust .trust-content p {
  margin: 2px 0 0;
  font-size: 11px;
  color: #777;
}

#product_details {
  border-top: 1px solid #ddd;
}

.singleCard .card-title {
  font-size: 20px;
  color: var(--title-color) !important;
}

.continueshopping {
  background-color: var(--tab-background-color) !important;
  border: none !important;
}

/* Policy Content Box */
.policy-body-content p {
  margin-bottom: 0 !important; 
  color: #000;
}

.policy-body-content a {
  color: var(--title-color) !important;
  text-decoration: underline !important;
  font-weight: 700;
}

.policy-body-box .card-body {
  background: #f8f5ec;
  border: 1px solid #a6815d;
  border-radius: 15px;
}

/* Page Banner Component */
.common-page-banner {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-size: cover;
  /* background-position: center; */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.common-page-banner .page-title {
  color: #000 !important;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.common-page-banner .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.common-page-banner .breadcrumb-item {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.common-page-banner .breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.common-page-banner .breadcrumb-item a:hover {
  color: #ffc107;
  text-decoration: underline;
}

.common-page-banner .breadcrumb-item.active {
  color: #f8f9fa;
  font-weight: 600;
}

.common-page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

/* Auth / Multi-Step Form Styling */
.geetaangan-login-section {
  position: relative;
  background: url('../images/bg/loginbg.png') no-repeat center center / cover;
  padding: 80px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.geetaangan-login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.geetaangan-login-container {
  position: relative;
  z-index: 2;
}

.geetaangan-login-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.leaf-badge-icon {
  width: 50px;
  height: 50px;
  background-color: var(--light-bg-badge);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  font-size: 1.25rem;
}

.card-login-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--dark-green);
}

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #3b5323;
  margin: 8px 0;
}

.divider-ornament::before,
.divider-ornament::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #3b5323;
  opacity: 0.3;
  max-width: 40px;
}

.divider-ornament::before { margin-right: 10px; }
.divider-ornament::after { margin-left: 10px; }

.card-login-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.signupSteps {
  position: relative;
  margin-bottom: 25px;
}

.signupSteps ul {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
}

.signupSteps .ulLIne {
  position: absolute;
  top: 18px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}

.signupSteps li {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 0 10px;
  text-align: center;
}

.signupSteps li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.signupSteps li small {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.signupSteps li.active span {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(180, 83, 9, 0.25);
}
.signupSteps li.active span i{
  color: #fff !important;
}

.signupSteps li.active small {
  color: var(--primary-color);
}

.custom-input-group {
  position: relative;
}

.custom-input-group .input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 1rem;
  z-index: 5;
}

.custom-input-group .toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 1rem;
  cursor: pointer;
  z-index: 5;
  transition: color 0.2s;
}

.custom-input-group .toggle-password:hover {
  color: var(--primary-color);
}

.custom-input-group .form-control {
  padding-left: 45px;
  padding-right: 45px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  font-size: 0.95rem;
}

.custom-input-group .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
}

.otpInput {
  letter-spacing: 6px;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
}

.form-label-custom {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
  display: block;
}

.confirmationEmailCard {
  background-color: #fcf8f2;
  border: 1px dashed var(--primary-color);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 20px;
}

.spamNotice {
  background-color: #fff8e1;
  border: 1px solid #ffe082;
  color: #7f5f00;
  font-size: 0.85rem;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 20px;
}

.btn-geetaangan-primary {
  width: 100%;
  height: 52px;
  background-color: var(--primary-color);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-geetaangan-primary:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
}

.resendBtn {
  font-size: 0.85rem;
  color: var(--primary-color);
  background: none;
  border: none;
  padding: 0;
  font-weight: 600;
  cursor: pointer;
}

.resendBtn:disabled {
  color: var(--text-muted);
  cursor: not-allowed;
}

.signup-redirect-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.signup-redirect-link:hover {
  text-decoration: underline;
  color: var(--primary-hover);
}

/* ==========================================================
   4. CONSOLIDATED MEDIA QUERIES (DESKTOP TO MOBILE)
   ========================================================== */

/* Min Width 1200px */
@media (min-width: 1200px) {
  .header-style-3 .site-navigation ul.navigation > li > a {
    margin: 0 10px !important;
  }
  .header-style-3 .site-navigation {
    padding: 0 !important;
  }
  .header-style-3 .pbmit-slider-area {
    margin-top: 20px !important;
  }
}

/* Max Width 1200px */
@media (max-width: 1200px) {
  .site-header div.menubar {
    order: 2;
  }
  .site-header div.addtocart {
    width: 60%;
  }
}

/* Max Width 1024px */
@media (max-width: 1024px) {
  .product-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Max Width 992px / 991px */
@media (max-width: 992px) {
  #footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reel-card {
    flex: 0 0 calc(33.33% - 11px);
  }
}

@media (max-width: 991px) {
  #counterimage .main-title,
  #counterimage .sub-title {
    font-size: 22px;
  }

  #counterimage .counter-digit {
    width: 42px;
    height: 52px;
    font-size: 28px;
  }

  #counterimage .farmer-art {
    width: 50%;
  }

  #product-trust .trust-wrapper {
    justify-content: flex-start;
  }

  #product-trust .trust-item {
    flex: 0 0 calc(50% - 15px);
  }

  .pbmit-slider-three .slider-img {
    border-radius: 0 !important;
  }

  section {
    padding: 40px 0 !important;
  }

  section .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .product-grid-container {
    gap: 10px !important;
  }

  .pricerating {
    flex-direction: column !important;
  }

  .product-details {
    padding: 10px !important;
  }

  .ihbox-section-three .row .col-md-6 {
    width: 50% !important;
  }

  .ihbox-section-three .col-md-6.col-xl-3:nth-child(2) {
    margin: 0 !important;
  }

  .pbmit-ihbox-style-8 .pbmit-heading-desc {
    width: 100% !important;
  }

  .explorecollection {
    margin-bottom: 40px;
  }

  h4 {
    font-size: 25px !important;
  }

  .geetaangan-insta-section .row .img-card {
    width: 50% !important;
  }

  .pbmit-heading-subheading .pbmit-subtitle:before {
    left: 0 !important;
  }

  .pbmit-heading-subheading .pbmit-subtitle {
    padding: 3px 21px 3px 20px !important;
  }

  #testimonial .testimonial-track {
    gap: 10px !important;
  }

  .geetaangan-insta-section .row img {
    max-height: 200px !important;
  }

  .testimonial-arrow.prev {
    left: 15px !important;
  }

  .testimonial-arrow.next {
    right: 15px !important;
  }
}

/* Min Width 768px */
@media (min-width: 768px) {
  .site-header .site-branding img {
    max-height: 100px;
  }

  .pbmit-slider-three .pbmit-slider-item {
    height: 500px !important;
  }

  .testimonial-card {
    flex: 0 0 380px;
  }

  .pbmit-slider-three .slider-img {
    height: 500px !important;
    padding: 0 !important;
  }
}

/* Max Width 768px / 767px */
@media (max-width: 768px) {
  .product-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  #product-view-container .pvc-gallery {
    flex-direction: column-reverse;
  }

  #product-view-container .pvc-thumbnails {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
  }

  #product-view-container .pvc-variants {
    grid-template-columns: repeat(2, 1fr);
  }

  #product-view-container .pvc-actions {
    flex-direction: column;
  }

  #product-view-container .pvc-add-cart-btn {
    height: 44px;
    padding: 15px 20px;
  }

  #productTab li {
    width: 100%;
  }

  .reel-card {
    flex: 0 0 calc(60% - 12px);
    height: 380px;
  }

  #customer-reviews-container .cr-summary {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #customer-reviews-container .cr-breakdown {
    border: none;
    padding: 0;
  }

  .common-page-banner {
    min-height: 200px;
  }

  .common-page-banner .page-title {
    font-size: 1.85rem;
  }

  .common-page-banner .breadcrumb-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 767px) {
  #lightbanner {
    height: 100px !important;
  }

  .pbmit-slider-three .slider-img {
    height: 150px;
    padding: 0;
  }

  .site-header .site-branding img {
    max-height: 50px !important;
    max-width: fit-content !important;
  }

  .explorebtn {
    order: 3;
    margin-top: 20px;
  }

  #counterimage {
    padding: 20px 10px;
  }

  #counterimage .main-card {
    flex-direction: column;
    height: auto;
  }

  #counterimage .left-image-panel {
    width: 100%;
    height: 220px;
  }

  #counterimage .left-image-panel::after {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(246, 230, 202, 0) 0%, #f6e6ca 100%);
  }

  #counterimage .right-content-panel {
    width: 100%;
    height: auto;
    padding: 30px 15px 50px 15px;
  }

  #counterimage .text-container {
    margin-bottom: 20px;
  }

  #counterimage .main-title,
  #counterimage .sub-title {
    font-size: 20px;
    line-height: normal;
  }

  #counterimage .counter-container {
    gap: 6px;
  }

  #counterimage .counter-digit {
    width: 36px;
    height: 46px;
    font-size: 24px;
    border-radius: 6px;
  }

  #counterimage .bee-icon {
    width: 35px;
    bottom: 15px;
    left: 15px;
  }

  #counterimage .farmer-art {
    width: 65%;
    opacity: 0.4;
  }

  .testimonial-carousel-viewport {
    scroll-snap-type: x mandatory;
  }

  .testimonial-card {
    scroll-snap-align: center;
    flex: 0 0 calc(100vw - 40px);
    max-width: 100%;
  }
}

/* Max Width 600px */
@media (max-width: 600px) {
  .reel-card {
    flex: 0 0 calc(70% - 10px);
    height: 380px;
  }

  .nav-btn {
    display: none;
  }
}

/* Max Width 576px */
@media (max-width: 576px) {
  #footer .footer-grid {
    grid-template-columns: 1fr;
  }

  #footer .bottom-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  #whatsapp-btn-wrapper {
    bottom: 18px;
    right: 50px;
  }

  #whatsapp-btn-wrapper .wa-float-link {
    width: 48px;
    height: 48px;
  }

  #whatsapp-btn-wrapper .wa-icon {
    width: 28px;
    height: 28px;
  }

  #product-trust .trust-item {
    flex: 0 0 50%;
  }
}

/* Max Width 480px & 380px */
@media (max-width: 480px) {
  .product-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 380px) {
  #counterimage .main-title,
  #counterimage .sub-title {
    font-size: 18px;
  }

  #counterimage .counter-digit {
    width: 30px;
    height: 40px;
    font-size: 20px;
  }
}

.pbmit-btn-secondary, .pbmit-btn-hover-global{
  background-color: var(--primary-color);
}
.pbmit-blog-style-1 .pbmit-featured-container {
  width: 100% !important;
  max-width: 387px; /* Prevents stretching larger than original design */
  aspect-ratio: 387 / 320; /* Dynamically scales height based on width */
  height: auto !important;
}

/* Ensure the image fills the dynamic container cleanly */
.pbmit-blog-style-1 .pbmit-featured-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Prevents distortion */
}

.post.blog-classic .pbmit-featured-img-wrapper{
  max-height: 300px;

}
.post.blog-classic .pbmit-featured-img-wrapper img{
 height: 250px !important;
 width: auto  !important;
}

.pbmit-ihbox-style-7 .pbmit-ihbox-box, .pbmit-ihbox-style-7{
  height: 100% !important;
}

@media (min-width: 1201px) {
    .header-style-3 .header-overlay {
        padding: 15px 20px 15px;
    }
}


.is-sticky .site-title, .is-sticky .site-branding img, .is-sticky .site-navigation ul.navigation > li > a{height: 70px !important;}
.is-sticky .container {padding-top: 10px !important; padding-bottom: 10px !important;}