/* ==========================================================================
   PRODUCTION CSS COHESIVE SYSTEM FOR TSEDAR PREMIUM BRAND SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --brand-dark: #0e2226;
  --brand-muted-text: #3d5256;
  --brand-light-teal: #bce3e3;
  --brand-accent-teal: #2b5c5f;
  --brand-star-teal: #61adb2;
  --brand-slate-button: #5c7277;
  --brand-slate-hover: #495a5e;
  --brand-slate-text-light: #6b8489;
  --brand-border-glass: rgba(162, 187, 195, 0.25);
  
  --global-gradient-bg: linear-gradient(180deg, #fbfcfe 0%, #cee6e6 45%, #c2e1de 100%);
  --font-stack-premium: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

body {
  font-family: var(--font-stack-premium);
  background-color: #fbfcfe;
  color: var(--brand-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- NAVIGATION EXTENSIONS --- */
.tsedar-navbar.scrolled {
  background: rgba(251, 252, 254, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--brand-border-glass);
}

/* ==========================================================================
   SECTION 1: HERO CONTAINER LABELS
   ========================================================================== */
.pd-hero-section {
  background: var(--global-gradient-bg);
  padding: 160px 0 100px 0;
}

.pd-hero-img-wrap {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(14, 34, 38, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.7);
  aspect-ratio: 1 / 1;
}

.pd-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-hero-img-wrap:hover img {
  transform: scale(1.03);
}

.pd-hero-title {
  font-size: 3.25rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.pd-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--brand-muted-text);
  margin-bottom: 32px;
  max-width: 520px;
}

/* Pricing Grid Architecture */
.pd-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.pd-current-price {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.pd-slashed-price {
  font-size: 1.25rem;
  color: #a3b8bc;
  text-decoration: line-through;
}

.pd-badge-discount {
  background-color: var(--brand-light-teal);
  color: var(--brand-accent-teal);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.03em;
}

/* Star Reviews System */
.pd-stars-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.pd-stars-icons {
  color: var(--brand-star-teal);
  font-size: 1rem;
  display: flex;
  gap: 3px;
}

.pd-stars-count {
  font-size: 0.88rem;
  color: var(--brand-slate-text-light);
  font-weight: 500;
}

/* Pill Grid Elements */
.pd-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.pd-pill-item {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(162, 187, 195, 0.35);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1e3135;
  line-height: 1.45;
  display: flex;
  align-items: center;
  backdrop-filter: blur(10px);
}

/* Shipping Ticker Elements */
.pd-shipping-ticker {
  font-size: 0.92rem;
  color: var(--brand-muted-text);
  margin-bottom: 32px;
  font-weight: 500;
}

.pd-shipping-ticker .pd-ticker-time {
  background-color: var(--brand-light-teal);
  color: #123336;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.86rem;
  margin: 0 4px;
}

/* Counter & Call to Actions */
.pd-cart-control-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.pd-quantity-stepper {
  display: flex;
  align-items: center;
  
  
  border-radius: 14px;
  height: 54px;
  padding: 0 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.pd-quantity-stepper button {
  width: 42px;
  height: 42px;
  background: #8b9fa1;
  border: none;
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.pd-quantity-stepper button:hover {
  background: #e2ebed;
}

#qtyDisplay {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-dark);
  width: 44px;
  text-align: center;
}

.pd-submit-cart-btn {
  flex-grow: 1;
  background-color: var(--brand-slate-button);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  height: 54px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.1s ease;
}

.pd-submit-cart-btn:hover {
  background-color: var(--brand-slate-hover);
}

.pd-submit-cart-btn:active {
  transform: scale(0.99);
}

.card:hover { transform: translateY(-6px); }
  .line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Trust Elements Matrix */
.pd-trust-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.matrix-box {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--brand-border-glass);
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
  display: flex;
  
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(5px);
}

.matrix-box i {
  font-size: 1.5rem;
  color: var(--brand-star-teal);
}

.matrix-box span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brand-muted-text);
  line-height: 1.4;
}

/* ==========================================================================
   SECTION 2: EDITORIAL PHILOSOPHY (detail-6.jpg)
   ========================================================================== */
.pd-statement-section {
  background: linear-gradient(0deg, #fbfcfe 0%, #cee6e6 45%, #c2e1de 100%);
  padding: 120px 0;
  border-top: 1px solid var(--brand-border-glass);
  border-bottom: 1px solid var(--brand-border-glass);
}

.pd-statement-badge-wrap {
  margin-bottom: 32px;
}

.pd-statement-badge {
  background: #c2e0de;
  border: 1px solid #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brand-muted-text);
  box-shadow: 0 4px 12px rgba(14, 34, 38, 0.03);
}

.pd-statement-badge i {
  color: var(--brand-star-teal);
  margin-right: 4px;
}

.pd-statement-text {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--brand-dark);
  max-width: 1050px;
  margin: 0 auto;
  letter-spacing: -0.02em;
}

.pd-statement-text .muted-text {
  color: #8fa4a6;
}

/* ==========================================================================
   SECTION 3: INGREDIENTS + SOURCES (detail-5.png)
   ========================================================================== */
.pd-sources-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.pd-section-main-title {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: var(--brand-dark);
  margin-bottom: 50px;
  letter-spacing: -0.01em;
}

.pd-source-card {
  border-radius: 24px;

  display: flex;
  align-items: flex-end;
  padding: 40px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--brand-border-glass);
  box-shadow: 0 10px 30px rgba(0,0,0,0.01);
  position: relative;
  overflow: hidden;
}

.source-mct-bg {
  background-image: linear-gradient(180deg, #e3eef4 0%, #e3eef4 100%);
      margin: 20px 20px 20px 20%;
}

.source-curcumin-bg {
  background-image: linear-gradient(180deg, rgba(235,224,204,0.85) 0%, rgba(235,224,204,0.85) 100%);
      margin: 20px 20% 20px 0px;
}

.pd-source-card-body {
  position: relative;
  z-index: 2;
  max-width: 440px;
}

.source-card-title {
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
}

.source-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--brand-muted-text);
  margin-bottom: 24px;
}

.btn-source-action {
  display: inline-block;
  background: #8b9fa1;
  border: 1px solid rgba(14, 34, 38, 0.1);
  padding: 8px 24px;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-source-action:hover {
  background: var(--brand-dark);
  color: #ffffff;
}

/* ==========================================================================
   SECTION 4: USAGE PROTOCOLS (detail-4.jpg)
   ========================================================================== */
.pd-usage-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9f9 100%);
}

.pd-usage-graphic-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--brand-border-glass);
}

.pd-usage-graphic-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 520px;
}

.pd-usage-glass-card {
  background: url(../img/home-bg-6.png);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 30px 60px rgba(14, 34, 38, 0.03);
}
.pd-usage-glass-card .phase-item{
justify-content: flex-start;padding-left:0
}


.pd-usage-glass-card .phase-item.item-1  .phase-row,
.pd-usage-glass-card .phase-item.item-1 .phase-badge{
background: #142b2b;
}
.pd-usage-glass-card .phase-item.item-2  .phase-row,
.pd-usage-glass-card .phase-item.item-2 .phase-badge{
background: #667676;
}
.pd-usage-glass-card .phase-item.item-3  .phase-row,
.pd-usage-glass-card .phase-item.item-3 .phase-badge{
background: #9da5a5;
}

.usage-card-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.usage-card-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--brand-slate-text-light);
  margin-bottom: 40px;
}

.usage-steps-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.usage-step-row {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 14px;
  padding: 6px 20px 6px 6px;
  border: 1px solid transparent;
}

.row-step-1 {
  background: #0e2226;
  color: #ffffff;
}

.row-step-2 {
  background: #62797d;
  color: #ffffff;
}

.row-step-3 {
  background: #90a5a8;
  color: #ffffff;
}

.badge-step {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  min-width: 80px;
  text-align: center;
}

.row-step-1 .badge-step {
  background: rgba(255,255,255,0.08);
}

.text-step {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
}


/* ==========================================================================
   SECTION 6: TRUST MATRIX / ACCORDION STYLE (detail-2.jpg)
   ========================================================================== */
.pd-guarantee-section {
  padding: 120px 0;
  background: url(../img/detail-bg-2.png);
  background-size: cover;
}

.guarantee-main-title {
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.guarantee-main-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--brand-slate-text-light);
}

.guarantee-accordion-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guarantee-node-item {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(162, 187, 195, 0.2);
  border-radius: 16px;
  padding: 24px 32px;
  backdrop-filter: blur(10px);
}

.node-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brand-dark);
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(162, 187, 195, 0.2);
  padding-bottom: 10px;
}

.node-dot {
  width: 5px;
  height: 5px;
  background-color: var(--brand-dark);
  border-radius: 50%;
}

.node-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #556b6f;
  max-width: 640px;
}

/* ==========================================================================
   SECTION 7: HORIZONTAL CAROUSEL COMPONENT (detail.jpg)
   ========================================================================== */
.pd-crosssell-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.crosssell-title {
  font-size: 2.25rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.02em;
}

.crosssell-horizontal-rack {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
}

.crosssell-rack-card {
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--brand-border-glass);
}

.coming-soon-card {
  background: linear-gradient(135deg, #eef7f7 0%, #d5ebea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
}

.cs-badge-center {
  background: rgba(14, 34, 38, 0.15);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

.dynamic-image-card {
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

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

.cs-card-anchor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(14,34,38,0.4) 100%);
}

.cs-footer-badge {
  background: rgba(14, 34, 38, 0.5);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.1);
}


/* ==========================================================================
   FOOTER FRAMEWORK
   ========================================================================== */
.site-footer {
  background-color: #f7fafb;
  border-top: 1px solid var(--brand-border-glass);
  padding: 80px 0 40px 0;
}

.footer-top-row {
  margin-bottom: 60px;
}

.footer-brand-logo {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.footer-group-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand-slate-text-light);
  margin-bottom: 24px;
}

.footer-navigation-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-navigation-links a {
  text-decoration: none;
  color: var(--brand-muted-text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-navigation-links a:hover {
  color: var(--brand-dark);
}

.footer-action-top-scroll {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid var(--brand-border-glass);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 24px;
  transition: background 0.2s ease;
}

.footer-action-top-scroll:hover {
  background: #0e2226;
  color: #ffffff;
}

.footer-contact-block {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--brand-muted-text);
}

.footer-contact-block p {
  margin-bottom: 6px;
}

.footer-bottom-bar-wrap {
  border-top: 1px solid var(--brand-border-glass);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-social-cluster {
  display: flex;
  gap: 10px;
}

.footer-social-cluster button {
  background: #ffffff;
  border: 1px solid var(--brand-border-glass);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-muted-text);
  cursor: pointer;
  transition: background 0.2s;
}

.footer-social-cluster button:hover {
  background: #eff4f5;
}

.footer-copyright-text {
  font-size: 0.85rem;
  color: var(--brand-slate-text-light);
  font-weight: 500;
}

.footer-legal-anchor {
  font-size: 0.85rem;
  color: var(--brand-slate-text-light);
  text-decoration: none;
  font-weight: 500;
}
/* ==========================================================================
   SWIPER.JS BRAND OVERRIDES FOR TSEDAR
   ========================================================================== */
/* ==========================================================================
   SWIPER.JS ARCHITECTURE UPGRADES FOR TSEDAR RACK
   ========================================================================== */
.pd-crosssell-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.crosssell-title {
  font-size: 2.25rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.02em;
}

/* Base Swiper Context Wrapper */
.crosssell-swiper {
  width: 100%;
  padding: 10px 0 25px 0 !important; /* Spacing prevents shadows from being cropped */
  overflow: hidden;
}

/* Enforcing standard container boundaries on slides */
.crosssell-rack-card {
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--brand-border-glass);
  box-sizing: border-box;
}

/* Asymmetric design treatment matching detail-7.jpg specs */
@media (min-width: 1200px) {
  /* This ensures the middle active slides take prominence over the outer "Coming Soon" bookends */
  .crosssell-swiper .swiper-slide {
    width: 30% !important; /* Default middle size asset width */
    transition: width 0.3s ease;
  }
  .crosssell-swiper .swiper-slide.coming-soon-card {
    width: 20% !important; /* Slimmer layout profile for edge banners */
  }
}

.coming-soon-card {
  background: linear-gradient(135deg, #eef7f7 0%, #d5ebea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
}

.cs-badge-center {
  background: rgba(14, 34, 38, 0.15);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

.dynamic-image-card {
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

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

.cs-card-anchor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(14,34,38,0.4) 100%);
}

.cs-footer-badge {
  background: rgba(14, 34, 38, 0.5);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Custom Navigation Button Control Overrides */
.slider-ctrl-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 1px solid var(--brand-border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(14, 34, 38, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-ctrl-btn:hover {
  background: var(--brand-dark);
  color: #ffffff;
}

.swiper-prev-custom { left: 10px; }
.swiper-next-custom { right: 10px; }

/* Elegant fade out for disabled slider bounds */
.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 1200px) {
  .swiper-prev-custom { left: -24px; }
  .swiper-next-custom { right: -24px; }
}

@media (max-width: 1199px) {
  /* Fallback behavior on tablets for generic card dimensions */
  .crosssell-swiper .swiper-slide {
    width: auto !important;
  }
}

@media (max-width: 767px) {
  .slider-ctrl-btn { display: none; } /* Rely purely on effortless touch swiping gestures on mobile devices */
}

/* Seamless grid display look at crisp widescreen resolutions */


@media (max-width: 767px) {
  .slider-ctrl-btn { display: none; } /* Rely entirely on effortless native mobile gesture swiping */
}

.product-card-link { display: block; text-decoration: none; color: inherit; height: 100%; }
.product-card {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(112, 144, 150, 0.06);
  transition: var(--t);
  height: 100%;
}
.product-card:hover {
  box-shadow: 0 16px 40px rgba(112, 144, 150, 0.12);
  transform: translateY(-6px);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img { transform: scale(1.08); }

.product-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,42,46,0.3) 0%, rgba(17,42,46,0.8) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: var(--t);
  z-index: 2;
}
.product-card:hover .product-hover-overlay { opacity: 1; }
.product-hover-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  line-height: 1.6;
  text-align: center;
  transform: translateY(10px);
  transition: var(--t);
}
.product-card:hover .product-hover-text { transform: translateY(0); }

.product-card-footer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 5;
  background: transparent;
  padding: 0;
  border-top: none;
}
.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white) !important;
  background: rgba(17, 42, 46, 0.5) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--t);
}
.product-card:hover .product-tag {
  background: #78909c !important; /* Exact design slate grey button */
  border-color: rgba(255, 255, 255, 0.4);
}
.product-tag--muted { background: rgba(0, 0, 0, 0.5) !important; }

/* Coming soon product */
.product-card--coming .product-img { opacity: 0.6; filter: grayscale(20%); }
.product-coming-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 42, 46, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 3;
}
.pd-quantity-stepper {
  display: flex;
  align-items: center;
  
  
  border-radius: 14px;
  height: 54px;
  padding: 0 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
      height: 36px;
      margin-left: 10px;
}

.pd-quantity-stepper button {
  width: 42px;
  height: 42px;
  background: #8b9fa1;
  border: none;
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: background 0.2s ease;
  background: rgba(17, 42, 46, 0.5) !important;
  backdrop-filter: blur(10px);
}
.product-card:hover .pd-quantity-stepper button {
    background: #78909c !important;
    border-color: rgba(255, 255, 255, 0.4);
}

.pd-quantity-stepper button:hover {
  background: #e2ebed;
}

#qtyDisplay {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-dark);
  width: 44px;
  text-align: center;
  color: #fff;
}

.pd-submit-cart-btn {
  flex-grow: 1;
  background-color: var(--brand-slate-button);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  height: 54px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.1s ease;
}

.pd-submit-cart-btn:hover {
  background-color: var(--brand-slate-hover);
}

.pd-submit-cart-btn:active {
  transform: scale(0.99);
}


/* Responsive */
@media (max-width: 768px) {
  .products-deco { display: none; }
  .products-hero-content { padding: 60px 20px 40px; }
  .pd-statement-section,.pd-hero-section,.pd-sources-section,.pd-usage-section,
  .pd-doctor-section,.pd-guarantee-section,.pd-crosssell-section{padding: 30px 0;}
.pd-usage-glass-card .phase-item{padding: 10px 0;}
.pd-usage-glass-card{padding: 10px;}
}

/* ==========================================================================
   RESPONSIVE LAYOUT OVERRIDES (MOBILE FRIENDLY DEGRADATION)
   ========================================================================== */
@media (max-width: 1199px) {
  .crosssell-horizontal-rack {
    grid-template-columns: 1fr 1fr;
  }
  .coming-soon-card {
    display: none;
  }
}

@media (max-width: 991px) {
  .pd-hero-title { font-size: 2.5rem; }
  .pd-pill-grid { grid-template-columns: 1fr; }
  .pd-statement-text { font-size: 1.85rem; }
  .doctor-section-title { font-size: 2.25rem; }
  .guarantee-main-title { font-size: 2.5rem; }
  
  .waitlist-frosted-box { padding: 40px 24px; }
  .source-mct-bg,.source-curcumin-bg{margin:10px}
}

@media (max-width: 575px) {
  .pd-trust-matrix { grid-template-columns: 1fr; }
  .footer-bottom-bar-wrap { flex-direction: column; gap: 20px; text-align: center; }
  .waitlist-form-group { flex-direction: column; gap: 10px; background: transparent; border: none; }
  .waitlist-form-group input { background: #ffffff; border: 1px solid var(--brand-border-glass); height: 50px; border-radius: 12px; }
}