/* ── PRODUCTS PAGE HERO (PREMIUM UPGRADE) ── */
.page-hero {
  background: radial-gradient(circle at 20% 50%, rgba(5, 150, 105, 0.15) 0%, transparent 50%),
              linear-gradient(135deg, #022c22 0%, #064e3b 60%, #022c22 100%); /* Deep rich green */
  padding: clamp(100px, 8vw, 120px) 0 clamp(40px, 5vw, 60px); /* Compact vertical space */
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 20% 50%, black, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: clamp(40px, 5vw, 100px);
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-green-bright);
  margin-bottom: 24px;
  opacity: 0.9;
}
.breadcrumb a {
  color: white;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.breadcrumb a:hover { opacity: 1; }
.breadcrumb .sep { margin: 0 8px; opacity: 0.4; }

.hero-title {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.text-gradient {
  background: linear-gradient(135deg, #10b981 0%, #6dbf3e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.2vw, 1.35rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 600;
}
.trust-item svg { color: var(--color-green-bright); }

/* ── HERO VISUAL AREA ── */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.floating-card.c1 {
  width: 240px;
  height: 320px;
  top: 5%;
  left: 10%;
  z-index: 3;
  background-image: url('https://res.cloudinary.com/df64vtuh5/image/upload/v1776674283/main-card_qjoeca.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: float 6s ease-in-out infinite;
}

.floating-card.c2 {
  width: 200px;
  height: 200px;
  bottom: 0%;
  right: 5%;
  z-index: 2;
  background-image: url('https://res.cloudinary.com/df64vtuh5/image/upload/v1776674284/secondry-card_pfucd2.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: float 8s ease-in-out infinite reverse;
  opacity: 0.9;
}

.floating-card.c3 {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 10%;
  z-index: 1;
  background-image: url('https://res.cloudinary.com/df64vtuh5/image/upload/v1776674283/third-card_yrpbuq.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: float 10s ease-in-out infinite 1s;
  opacity: 0.8;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.grid-preview-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4v-4H4v4H0v2h4v4h2v-4h4v-2H6zM36 4v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  .hero-content { margin: 0 auto; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .trust-indicators { justify-content: center; }
  .hero-visual { height: 350px; }
}

/* ── PRODUCTS PAGE GRID UPDATES ── */
.products-section {
  padding-top: var(--space-4) !important;
  background: var(--color-offwhite);
}
.container {
  max-width: 1720px;
  width: 100%;
  padding: 0 clamp(20px, 5vw, 60px);
  margin: 0 auto;
}

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Strict 2 columns mobile */
  gap: 12px; /* Tighter gap */
  width: 100%;
  padding-top: var(--space-4);
  align-items: stretch;
}

@media (min-width: 640px) {
  .products-page-grid { 
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .products-page-grid { 
    grid-template-columns: repeat(5, 1fr); /* Strong 5-column rhythm */
    gap: 20px;
  }
}

@media (min-width: 1440px) {
  .products-page-grid { 
    gap: 24px; /* Slightly more space for very large screens but still tight */
  }
}

/* ── PRODUCT SEARCH & CONTROLLERS ── */
.products-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 0;
  padding: 16px 32px; /* Increased height/padding */
  background: rgba(255, 255, 255, 0.7); /* Translucent */
  backdrop-filter: blur(16px); /* Glassmorphism */
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px; /* More modern than 100px pill */
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  position: sticky;
  top: 80px; /* Stick below nav */
  z-index: 100;
  margin-bottom: 32px;
}

.control-search {
  flex: 1.2;
  max-width: 500px;
  position: relative;
  display: flex;
  align-items: center;
}
.control-search input {
  width: 100%;
  height: 48px; /* Taller */
  padding: 0 16px 0 46px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.control-search input:focus {
  outline: none;
  background: white;
  border-color: var(--color-teal-mid);
  box-shadow: 0 4px 12px rgba(23, 122, 138, 0.08);
}
.search-icon {
  position: absolute;
  left: 18px;
  color: var(--color-teal-mid);
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 0.2s;
}
.control-search input:focus + .search-icon {
  opacity: 1;
}

.control-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.control-filter,
.control-sort {
  display: flex;
  flex-direction: column; /* Stack label over select for control panel feel */
  gap: 6px;
}
.control-filter label,
.control-sort label {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-teal-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}
.control-filter select,
.control-sort select {
  height: 48px;
  padding: 0 40px 0 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  min-width: 180px;
  transition: all 0.2s;
}

.control-filter select:hover,
.control-sort select:hover {
  background-color: white;
  border-color: var(--color-teal-mid);
  transform: translateY(-1px);
}

.control-filter select:active,
.control-sort select:active {
  transform: translateY(1px); /* Pressed effect */
  background-color: #f1f5f9;
}

@media (max-width: 1024px) {
  .products-controls-bar {
    border-radius: 20px;
    padding: 16px 20px;
    flex-wrap: wrap;
    top: 60px;
  }
}

@media (max-width: 768px) {
  .products-controls-bar {
    gap: 16px;
  }
  .control-search {
    max-width: none;
    width: 100%;
    order: 1;
  }
  .control-actions {
    width: 100%;
    justify-content: space-between;
    order: 2;
  }
  .control-filter select,
  .control-sort select {
    min-width: auto;
    width: 100%;
    font-size: 0.8rem;
  }
}

/* ── PREMIUM PRODUCT CARD ── */
.product-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--color-teal-mid);
}



.product-card-image {
  aspect-ratio: 1 / 1;
  background: #f7faf9;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-image img {
  transform: scale(1.12); /* Image Zoom */
}

.product-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .product-image-overlay {
  opacity: 1;
}

/* Card Image Header (Top Right Badges) */
.card-image-header {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-pill {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
  background: var(--color-teal-mid);
  color: white;
}

.star-rating-only {
  letter-spacing: 2px;
  font-size: 12px;
}

.product-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px; /* Smaller meta */
  opacity: 0.6; /* Subtle */
}
.product-stock {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-stock.in { color: var(--color-green-mid); }
.product-stock.out { color: #ef4444; }

.product-name {
  font-size: 1.15rem; /* Larger primary font */
  font-weight: 800;
  color: var(--color-text);
  margin: 2px 0;
  cursor: pointer;
  line-height: 1.25;
}

.product-tagline {
  font-size: 0.8rem; /* Smaller subtitle */
  color: var(--color-muted);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  width: 100%;
}
.tagline-main {
  flex: 0 0 65%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.8;
}
.tagline-separator {
  margin: 0 4px;
  color: var(--color-border);
  font-weight: 300;
  flex: 0 0 auto;
}
.tagline-category {
  flex: 0 0 32%;
  font-weight: 800;
  color: var(--color-teal-mid);
  font-size: 8.5px; /* Very subtle meta */
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: right;
  opacity: 0.7;
}

.size-chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}
.size-chip {
  padding: 5px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
}
.size-chip:hover { border-color: var(--color-teal-mid); }
.size-chip.active {
  background: #f1f5f9;
  border-color: var(--color-teal-mid);
  color: var(--color-teal-deep);
}

.product-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-price-box {
  display: flex;
  flex-direction: column;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.discount-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}
.original-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  color: var(--color-muted);
  text-decoration: line-through;
  font-weight: 500;
  opacity: 0.8;
}
.offer-badge {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 4px rgba(255, 107, 107, 0.2);
}
.price-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-teal-deep);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.currency {
  font-size: 0.7em;
  margin-right: 2px;
}

.product-actions-v2 {
  display: flex;
  gap: 8px;
}
.action-btn {
  height: 42px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.action-btn:active {
  transform: scale(0.95); /* Tactile press feedback */
  filter: brightness(0.9);
}

.btn-cart-icon {
  width: 42px;
  background: white;
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
}
.btn-cart-icon:hover {
  background: var(--color-ice);
  border-color: var(--color-teal-mid);
  color: var(--color-teal-mid);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.1);
}

.btn-buy-now {
  flex: 1;
  background: var(--color-teal-deep);
  color: white;
  border: none;
  font-size: 0.9rem;
}
.btn-buy-now:hover {
  background: var(--color-teal-mid);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 20px rgba(5, 150, 105, 0.25); /* Premium Glow */
}

/* Skeleton loader */
.product-card.skeleton {
  min-height: 400px;
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ── PAGINATION ── */
.pagination-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}
.pagination-btn {
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: white;
  font-weight: 700;
  cursor: pointer;
}
.pagination-btn.active {
  background: var(--color-teal-mid);
  color: white;
  border-color: var(--color-teal-mid);
}
.pagination-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── MODAL EXTRAS (REUSED) ── */
.pd-modal-box {
  max-width: 1000px;
  width: 95%;
  max-height: 90vh;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pd-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 50;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
#pd-modal-content { overflow-y: auto; flex: 1; }
.pd-modal-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; }
@media (max-width: 850px) { .pd-modal-grid { grid-template-columns: 1fr; } }
.pd-modal-gallery { background: #fcfcfc; display: flex; align-items: center; justify-content: center; padding: var(--space-lg); border-right: 1px solid var(--color-border); }
@media (max-width: 850px) { .pd-modal-gallery { border-right: none; border-bottom: 1px solid var(--color-border); } }
.pd-modal-image-box { width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.pd-modal-image-box img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pd-modal-info { padding: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-sm); }
.pd-modal-price-card { background: #f8f9fb; border: 1px solid var(--color-border); border-radius: 12px; padding: 20px; margin: 10px 0; }
.pd-modal-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.modal-price-val { font-size: 32px; font-weight: 800; color: #111; }


/* ── PRODUCT MODAL REDESIGN V2 (PREMIUM) ── */
#pd-modal-content {
  padding: 0; /* Remove default padding for full-bleed layout */
}

.pd-modal-wrapper {
  color: var(--color-text);
  overflow-x: hidden;
}

.pd-modal-grid-v2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 600px;
}

/* --- LEFT COLUMN: VISUAL --- */
.pd-modal-visual-column {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  border-right: 1px solid rgba(0,0,0,0.05);
}

.pd-modal-main-image-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-visual {
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
  animation: modalFloat 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes modalFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.pd-modal-visual-column .glow-bg {
  position: absolute;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, var(--color-green-soft) 0%, transparent 70%);
  opacity: 0.4;
  z-index: 1;
}

.pd-modal-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.thumb.active { border-color: var(--color-teal-mid); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.blurred img { filter: blur(2px); opacity: 0.5; }

/* --- RIGHT COLUMN: CONTENT --- */
.pd-modal-details-column {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pd-modal-cat-pill {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-teal-mid);
  background: var(--color-ice);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 8px;
}

.pd-modal-title-v2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-teal-deep);
  letter-spacing: -0.02em;
}

.pd-modal-benefit-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-top: 4px;
}

.pd-modal-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.trust-pill {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-pill.rating { color: #f59e0b; }
.trust-pill.rating .count { color: #94a3b8; font-weight: 500; }
.trust-pill.stock-in { color: #10b981; }
.trust-pill.user-social { color: #64748b; }

/* Pricing Box */
.pd-modal-pricing-box {
  background: #f8fafc;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}
.price-main-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.modal-current-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
}
.modal-discount-stack {
  display: flex;
  flex-direction: column;
}
.modal-old-price {
  font-size: 1rem;
  text-decoration: line-through;
  color: #94a3b8;
}
.modal-off-pill {
  font-size: 10px;
  font-weight: 800;
  color: white;
  background: var(--grad-sunset);
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 2px;
}
.modal-tax-sub {
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
  display: block;
}

/* Pack Selection */
.selection-label-v2 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #475569;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}
.pd-modal-chips-v2 {
  display: flex;
  gap: 10px;
}
.pill-chip {
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid #e2e8f0;
  background: white;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.pill-chip:hover { border-color: var(--color-teal-mid); }
.pill-chip.active {
  background: var(--color-teal-deep);
  border-color: var(--color-teal-deep);
  color: white;
  box-shadow: 0 4px 12px rgba(13, 76, 86, 0.2);
}

/* CTA Section */
.pd-modal-cta-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.btn-modal-buy-now {
  background: var(--grad-cta);
  color: #022c22;
  padding: 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(109, 191, 62, 0.25);
}
.btn-modal-buy-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(109, 191, 62, 0.4);
}
.btn-modal-add-cart {
  background: white;
  color: var(--color-teal-deep);
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-modal-add-cart:hover {
  background: #f8fafc;
  border-color: var(--color-teal-mid);
}

.cta-trust-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
}
.cta-trust-footer .dot {
  width: 3px;
  height: 3px;
  background: #cbd5e1;
  border-radius: 50%;
}

/* Benefits V2 */
.pd-modal-benefits-v2 {
  margin-top: 10px;
}
.benefits-label-v2 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #475569;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}
.benefit-list-v2 {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefit-list-v2 li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #475569;
}
.benefit-list-v2 li svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.pd-modal-footer-specs {
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
  display: flex;
  gap: 24px;
}
.spec-item {
  font-size: 12px;
  font-weight: 700;
  color: #111;
}
.spec-item span {
  color: #94a3b8;
  font-size: 10px;
  margin-right: 6px;
}

@media (max-width: 900px) {
  .pd-modal-grid-v2 { grid-template-columns: 1fr; }
  .pd-modal-visual-column { min-height: 350px; padding: 20px; }
  .pd-modal-details-column { padding: 30px; }
  .pd-modal-title-v2 { font-size: 1.8rem; }
}
