/*
* WooCommerce Single Product Page (PDP) Stylesheet
* Brand: #0A1628 (Deep Navy) | #F7F6F4 (Off-white) | #EFF1F4 (Light Blue) | #456793 (Clay Blue)
* Pixel-perfect match to Figma: node-id=21409-3616
*/

/* ═══════════════════════════════════════════
BASE
═══════════════════════════════════════════ */
.pdp-wrapper {
  background-color: #ffffff !important;
  width: 100%;
  font-family: var(--font-dm-sans);
  overflow-x: hidden;
}

.pdp-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 105px 0px 60px;
  box-sizing: border-box;
  background-color: #ffffff;
}

/* ═══════════════════════════════════════════
BREADCRUMBS
═══════════════════════════════════════════ */
.pdp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #718096;
  margin-bottom: 14px;
  font-family: var(--font-dm-sans);
}
.pdp-breadcrumbs {
  color: var(--secondary-clay-blue-456793, #456793);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.pdp-breadcrumbs a {
  text-decoration: none;
}
.pdp-breadcrumbs a:hover {
  color: #0a1628;
}
.pdp-breadcrumbs .sep {
  color: #cbd5e0;
}
.pdp-breadcrumbs .current {
  color: #0a1628;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
MAIN GRID: 554 : 606  gap 80px
═══════════════════════════════════════════ */
.pdp-main-grid {
  display: grid;
  grid-template-columns: 554fr 606fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 991px) {
  .pdp-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pdp-container {
    padding: 24px 20px 40px;
  }
}

/* ═══════════════════════════════════════════
LEFT COLUMN: GALLERY
═══════════════════════════════════════════ */
.pdp-gallery-column {
  width: 100%;
  min-width: 0;
}

.pdp-gallery-slider-wrapper {
  position: relative;
  width: 100%;
}

/* Badge */
.pdp-gallery-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pdp-badge {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  padding: 4px 6px;
  border-radius: 0;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  font-family: var(--font-dm-sans);
}
.badge-out-of-stock {
  background: #0a1628;
}
.badge-sale {
  background: #e53e3e;
}
.badge-new {
  background: #2b7a3d;
}

/* Main Carousel */
.pdp-gallery-main {
  background: #eff1f4;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
}

/* Prevent the fade-mode slick list/track from creating empty vertical space */
.pdp-gallery-main .slick-list,
.pdp-gallery-main .slick-track {
  height: 100%;
}

/* Slick customisation – arrows inside the main image box */
.pdp-gallery-main .slick-prev,
.pdp-gallery-main .slick-next {
  /* position: absolute; */
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: #cfebf9;
  border: 1.5px solid #fff;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #0a1628;
  z-index: 5;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.08);
  padding: 0;
  outline: none;
}

.pdp-gallery-main .slick-prev {
  left: 16px;
}
.pdp-gallery-main .slick-next {
  right: 16px;
}
.pdp-gallery-main .slick-prev:hover,
.pdp-gallery-main .slick-next:hover {
  background: #0a1628;
  color: #fff;
  border-color: #0a1628;
}
.pdp-gallery-main .slick-prev::before,
.pdp-gallery-main .slick-next::before {
  display: none;
} /* kill default slick arrows */

/* Custom arrow SVGs rendered via JS */
.pdp-gallery-arrow svg {
  display: block;
}

.pdp-gallery-main-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 613px;
  padding: 40px;
  box-sizing: border-box;
  background: #eff1f4;
}
.pdp-gallery-main-slide img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}
/* Slick fade transition already handles animation; add subtle zoom on active */
.pdp-gallery-main .slick-current .pdp-gallery-main-slide img {
  animation: pdpImgIn 0.4s ease both;
}
@keyframes pdpImgIn {
  from {
    opacity: 0.6;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .pdp-gallery-main-slide {
    height: 400px;
    padding: 30px;
  }
}
@media (max-width: 479px) {
  .pdp-gallery-main-slide {
    height: 320px;
    padding: 20px;
  }
}

/* ── Thumbnail Strip ─────────────────────────────────────────────────────
   The thumbs are a plain flex row — NOT a Slick slider.
   Slick's asNavFor + infinite mode offsets the slick-track and pushes
   thumbnails outside the container. A flex row has no such side-effects.
   ────────────────────────────────────────────────────────────────────── */
.pdp-gallery-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden; /* hide any overflow if many thumbs exist */
}
.pdp-gallery-thumb-slide {
  /* Figma: W Fixed 106px, H Fixed 117.36px */
  width: 106px;
  min-width: 106px;
  height: 117px;
  flex-shrink: 0;
  cursor: pointer;
  outline: none;
  box-sizing: border-box;
}
.pdp-gallery-thumb-slide img {
  width: 100%;
  height: 100%;
  /* Figma inner padding: top 17.9, left 26.82, right 26.24, bottom 17.32 */
  padding: 12px;
  box-sizing: border-box;
  object-fit: contain;
  background: #eff1f4;
  border: 1px solid transparent;
  border-radius: 0;
  transition: border-color 0.2s ease;
  display: block;
}

.pdp-gallery-thumb-slide.slick-current img {
  border: 1px solid #7BA8C4;
}
/* Active / hover state — driven by JS class .is-active */
.pdp-gallery-thumb-slide.is-active img,
.pdp-gallery-thumb-slide:hover img {
  border-color: #7ba8c4;
}

/* ═══════════════════════════════════════════
RIGHT COLUMN: DETAILS
═══════════════════════════════════════════ */
.pdp-details-column {
  display: flex;
  flex-direction: column;
  margin-top: 34px;
}

.pdp-details-eyebrow {
  color: #5d98bd;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 137.5% */
  margin-bottom: 8px;
}

.pdp-details-title {
  color: #0a1628;
  font-family: "DM Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 1.2px;
  text-transform: capitalize;

  margin: 0 0 8px 0;
}

@media (max-width: 479px) {
  .pdp-details-title {
    font-size: 28px;
  }
}

/* Rating */
.pdp-details-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.pdp-rating-number {
  font-size: 16px;
  font-weight: 400;
  color: #191919;
  font-family: var(--font-dm-sans);
  line-height: 1;
  line-height: 150%;
}
.pdp-stars {
  color: #f57500;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 0;
}
.pdp-stars .star-empty {
  color: #cbd5e0;
}
.pdp-review-link {
  color: #191919;

  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  transition: color 0.2s;
  text-decoration: none;
}
.pdp-review-link:hover {
  color: #0a1628;
  text-decoration: underline;
}

/* Short Description */
.pdp-short-desc {
  color: var(--secondary-clay-blue-456793, #456793);

  /* Desktop/Body/body_16 */
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin-bottom: 32px;
}

/* Price */
.pdp-price-container {
  margin-bottom: 24px;
}
.pdp-price-container,
.pdp-price-container .woocommerce-Price-amount,
.pdp-price-container bdi {
  font-size: 32px;
  font-weight: 700;
  color: #0a1628;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--font-dm-sans);
}
.pdp-price-container del,
.pdp-price-container del .woocommerce-Price-amount,
.pdp-price-container del bdi {
  color: #a0aec0;
  font-size: 22px;
  font-weight: 400;
  text-decoration: line-through;
}
.pdp-price-container ins,
.pdp-price-container ins .woocommerce-Price-amount,
.pdp-price-container ins bdi {
  text-decoration: none;
  color: #0a1628;
  font-size: 32px;
  font-weight: 700;
}
.pdp-price-container .price-separator {
  color: #456793;
  font-size: 24px;
  margin: 0 4px;
  font-weight: 400;
}

/* Form separator */
.pdp-cart-form-container {
}

/* ═══════════════════════════════════════════
VARIATIONS
═══════════════════════════════════════════ */
.pdp-variations-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 24px;
}
.pdp-variation-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pdp-variation-label {
  font-size: 18px;
  font-weight: 700;
  color: #0a1628;
  font-family: var(--font-dm-sans);
  line-height: 120%; /* 21.6px */
  letter-spacing: -0.36px;
  text-transform: capitalize;
}
.pdp-selected-value-preview {
  font-weight: 400;
  color: #456793;
  margin-left: 4px;
  text-transform: capitalize;
  line-height: 120%; /* 21.6px */
  letter-spacing: -0.36px;
  text-transform: capitalize;
}

/* Color Swatches */
.color-swatches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.pdp-color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 0 1px #cfdaeb;
  padding: 0;
  transition: all 0.2s ease;
  outline: none;
}
.pdp-color-swatch:hover {
  transform: scale(1.1);
}
.pdp-color-swatch.active {
  box-shadow:
    0 0 0 1.5px #fff,
    0 0 0 3px #0a1628;
  transform: scale(1.15);
}

/* Nicotine / fallback pills */
.nicotine-pills-grid,
.fallback-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-nicotine-pill,
.pdp-fallback-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  background: #fff;
  border: 1px solid #cfdaeb;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 400;
  color: #456793;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  font-family: var(--font-dm-sans);
}
.pdp-nicotine-pill:hover,
.pdp-fallback-pill:hover {
  border-color: #7ba8c4;
}
.pdp-nicotine-pill.active,
.pdp-fallback-pill.active {
  background: #15243c;
  border-color: #15243c;
  color: #fff;
}

/* Nicotine Helper */
.pdp-nicotine-helper {
  margin-top: 18px;
}
.pdp-nicotine-helper-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #5d98bd;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-dm-sans);
  outline: none;
  transition: color 0.2s;
  letter-spacing: -0.32px;
  text-transform: capitalize;
}
.pdp-nicotine-helper-trigger:hover {
  color: #0a1628;
}
.pdp-nicotine-helper-content {
  margin-top: 8px;
  padding-left: 22px;
  font-size: 14px;
  color: #456793;
  line-height: 1.6;
}

/* Flavour Dropdown */
.pdp-custom-select-wrapper {
  position: relative;
  width: 100%;
}
.pdp-custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  padding: 0 20px;
  background: #fff;
  border: 1px solid #cfdaeb;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #456793;
  transition: border-color 0.2s;
  user-select: none;
  box-sizing: border-box;
}
.pdp-custom-select-trigger:hover,
.pdp-custom-select-wrapper.active .pdp-custom-select-trigger {
  border-color: #7ba8c4;
}
.pdp-custom-select-trigger .select-arrow {
  transition: transform 0.2s ease;
  color: #456793;
  flex-shrink: 0;
}
.pdp-custom-select-wrapper.active .select-arrow {
  transform: rotate(180deg);
}
.pdp-custom-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #cfdaeb;
  border-radius: 0px;
  box-shadow: 0 10px 24px rgba(10, 22, 40, 0.08);
  z-index: 200;
  display: none;
  max-height: 220px;
  overflow-y: auto;
}
.pdp-custom-select-wrapper.active .pdp-custom-select-options {
  display: block;
}
.pdp-custom-select-option {
  padding: 11px 20px;
  cursor: pointer;
  font-size: 14px;
  color: #4a5568;
  transition: all 0.15s;
}
.pdp-custom-select-option:hover {
  background: #f7f6f4;
  color: #0a1628;
}
.pdp-custom-select-option.selected {
  background: #eff1f4;
  color: #0a1628;
  font-weight: 700;
}

/* ═══════════════════════════════════════════
QTY + ADD TO CART — Figma: height 42px
═══════════════════════════════════════════ */
.pdp-qty-and-cart-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-top: 24px;
  width: 100%;
}

/* Qty selector — Figma: 126px wide, 42px tall */
.pdp-quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #cfdaeb;
  background: #fff;
  overflow: hidden;
  height: 42px;
  width: 126px;
  flex-shrink: 0;
  box-sizing: border-box;
}
.pdp-quantity-selector .qty-btn {
  width: 40px;
  height: 100%;
  border: none;
  background: transparent;
  color: #456793;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pdp-quantity-selector .qty-btn:hover {
  background: #f7f6f4;
  color: #0a1628;
}
.pdp-quantity-selector .qty-input {
  flex: 1;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #0a1628;
  background: transparent;
  outline: none;
  padding: 0;
  -moz-appearance: textfield;
  font-family: var(--font-dm-sans);
}
.pdp-quantity-selector .qty-input::-webkit-outer-spin-button,
.pdp-quantity-selector .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Add to Cart — Figma: dark navy #0A1628, full width, 42px tall */
.pdp-add-to-cart-btn {
  flex: 1;
  height: 42px;
  background: #0a1628 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-dm-sans);
  outline: none;
  box-sizing: border-box;
}
.pdp-add-to-cart-btn:hover {
  background: #1b2d44 !important;
}
.pdp-add-to-cart-btn:active {
  transform: scale(0.98);
}
.pdp-add-to-cart-btn.disabled,
.pdp-add-to-cart-btn[disabled],
.pdp-add-to-cart-btn.out-of-stock {
  background: #cbd5e0 !important;
  color: #718096 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* WooCommerce variation output */
.woocommerce-variation {
  margin-bottom: 16px;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.5;
}
.woocommerce-variation-price .price,
.woocommerce-variation-price span.price {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #0a1628 !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 12px !important;
  font-family: "Outfit", sans-serif !important;
  margin-bottom: 12px !important;
}
.woocommerce-variation-price del {
  color: #a0aec0 !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  text-decoration: line-through !important;
}
.woocommerce-variation-price ins {
  text-decoration: none !important;
  color: #0a1628 !important;
}
.woocommerce-variation-availability {
  font-weight: 600;
}
.woocommerce-variation-availability .in-stock {
  color: #38a169;
}
.woocommerce-variation-availability .out-of-stock {
  color: #e53e3e;
}
.variation-selected #pdp-main-price-display {
  display: none;
}
.reset_variations {
  font-size: 12px;
  color: #e53e3e;
  text-decoration: underline;
  margin-top: 10px;
  display: inline-block;
  cursor: pointer;
}

/* ═══════════════════════════════════════════
TRUST BADGES — Figma: 4 cols, 103.5px each, 134px tall, dividers
═══════════════════════════════════════════ */
.pdp-trust-badges {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.pdp-trust-badge {
  width: 103.5px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.pdp-trust-badge .badge-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #cfdaeb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.pdp-trust-badge:hover .badge-icon {
  transform: translateY(-4px);
  box-shadow: none;
}
.pdp-trust-badge .badge-icon svg {
  display: block;
}
.pdp-trust-badge .badge-text {
  font-size: 10px;
  font-weight: 700;
  color: #0a1628;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-dm-sans);
  line-height: 1.4;
}
.pdp-trust-divider {
  width: 1px;
  height: 134px;
  background: #cfdaeb;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .pdp-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pdp-trust-divider {
    display: none;
  }
  .pdp-trust-badge {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════
TABS SECTION — white bg, full-bleed
Figma: tabs header 48px tall
═══════════════════════════════════════════ */
.pdp-tabs-section {
  background: #eff1f4;
}
.pdp-tabs-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 0px;
  box-sizing: border-box;
}

/* Tab Header — Figma: border-bottom line, no top gap */
.pdp-tabs-header {
  display: flex;
  border-bottom: 1px solid #5d98bd;
}
.pdp-tab-btn {
  background: transparent;
  border: none;
  padding: 0 8px;
  height: 48px;
  font-size: 16px;
  font-weight: 400;
  color: #456793;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
  font-family: var(--font-dm-sans);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  white-space: nowrap;
  padding: 12px 24px !important;
}
.pdp-tab-btn:first-child {
  padding-left: 0;
}
.pdp-tab-btn:hover,
.pdp-tab-btn.active {
  color: #0a1628;
}

.pdp-tab-btn.active {
  font-weight: 600;
}
.pdp-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 5px;
  background: #7ba8c4;
  border-radius: 3px 3px 0 0;
}

.pdp-tab-contents {
  padding: 32px 0 0px;
}
.pdp-tab-content {
  display: none;
}
.pdp-tab-content.active {
  display: block;
}

/* ─── Description Content ─── */
.pdp-description-main-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* "Designed For Everyday Vaping" heading — Figma: 36px, 398px wide */
.pdp-desc-heading-block {
  margin-bottom: 24px;
}
.pdp-desc-main-heading {
  color: var(--primary-deep-blue-01-a-1628, #0a1628);

  /* Desktop/Headings/H2 - 28 */
  font-family: "DM Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 36.4px */
  letter-spacing: -0.56px;
  text-transform: capitalize;
}

.pdp-desc-body {
  margin-bottom: 0px;
}
.pdp-description-content {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 0px;
  max-width: 1128px;
}
.pdp-description-content p {
  margin-top: 0;
  margin-bottom: 16px;
}
.pdp-description-content ul {
  padding-left: 20px;
}
.pdp-description-content li {
  margin-bottom: 8px;
}

/* Specs */
.pdp-specs-section {
  margin-top: 0px;

  padding-top: 8px;
}
.pdp-specs-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 12px;
  font-family: var(--font-dm-sans);
}
.pdp-specs-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pdp-spec-row {
  display: flex;
  font-size: 15px;
  line-height: 1.5;
}
.pdp-spec-row .spec-label {
  font-weight: 700;
  color: #0a1628;
  font-family: var(--font-dm-sans);
  padding-right: 10px;
  flex-shrink: 0;
}
.pdp-spec-row .spec-value {
  color: #456793;
}

/* ═══════════════════════════════════════════
HIGHLIGHTS (icon row) — Figma: 5 cards × 216px, dividers at 102px
═══════════════════════════════════════════ */
.pdp-highlights-section {
  padding-top: 32px;
  margin-top: 0;
}
.pdp-highlights-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 991px) {
  .pdp-highlights-row {
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
  }
  .pdp-highlight-divider {
    display: none;
  }
}
.pdp-highlight-card {
  width: 216px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.pdp-highlight-card .hl-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #cfdaeb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.pdp-highlight-card:hover .hl-icon {
  transform: translateY(-3px);
  background: #cfdaeb;
  box-shadow: none;
}
.pdp-highlight-card .hl-icon svg {
  display: block;
}
.pdp-highlight-card .hl-title {
  color: var(--primary-deep-blue-01-a-1628, #0a1628);
  text-align: center;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

.pdp-highlight-divider {
  width: 1px;
  height: 102px;
  background: #e2e8f0;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0;
}

/* ═══════════════════════════════════════════
REVIEWS TAB
═══════════════════════════════════════════ */
.pdp-reviews-wrapper {
  background: #f7f6f4;
  border-radius: 12px;
  padding: 32px;
}
.pdp-reviews-wrapper h2.woocommerce-Reviews-title {
  font-size: 22px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 24px;
  font-family: var(--font-dm-sans);
}
.pdp-reviews-wrapper ol.commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pdp-reviews-wrapper ol.commentlist li.review {
  padding: 24px 0;
  border-bottom: 1px solid #e2e8f0;
}
.pdp-reviews-wrapper ol.commentlist li.review:last-child {
  border-bottom: none;
}
.pdp-reviews-wrapper ol.commentlist li.review .comment_container {
  display: flex;
  gap: 20px;
}
.pdp-reviews-wrapper ol.commentlist li.review img.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.pdp-reviews-wrapper ol.commentlist li.review .comment-text {
  flex-grow: 1;
}
.pdp-reviews-wrapper ol.commentlist li.review .meta {
  font-size: 13px;
  color: #718096;
  margin-bottom: 6px;
}
.pdp-reviews-wrapper ol.commentlist li.review .meta strong {
  color: #0a1628;
  font-size: 14px;
  font-weight: 700;
}
.pdp-reviews-wrapper ol.commentlist li.review .star-rating {
  float: right;
  color: #ffc000;
  font-size: 13px;
}
.pdp-reviews-wrapper ol.commentlist li.review .description {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
}
.pdp-reviews-wrapper #review_form_wrapper {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  margin-top: 32px;
}
.pdp-reviews-wrapper #reply-title {
  font-size: 18px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 16px;
  font-family: var(--font-dm-sans);
}
.pdp-reviews-wrapper form.comment-form label {
  font-weight: 700;
  font-size: 14px;
  color: #0a1628;
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-dm-sans);
}
.pdp-reviews-wrapper input[type="text"],
.pdp-reviews-wrapper input[type="email"],
.pdp-reviews-wrapper textarea {
  width: 100%;
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  color: #4a5568;
  background: #fff;
  box-sizing: border-box;
  outline: none;
  font-family: inherit;
}
.pdp-reviews-wrapper input[type="text"]:focus,
.pdp-reviews-wrapper input[type="email"]:focus,
.pdp-reviews-wrapper textarea:focus {
  border-color: #0a1628;
}
.pdp-reviews-wrapper form.comment-form input[type="submit"] {
  background: #0a1628;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-dm-sans);
  text-transform: uppercase;
}
.pdp-reviews-wrapper form.comment-form input[type="submit"]:hover {
  background: #1b2d44;
}
.pdp-reviews-wrapper .stars span a {
  color: #cbd5e0;
  font-size: 18px;
  text-decoration: none;
  margin-right: 2px;
}
.pdp-reviews-wrapper .stars.selected span a {
  color: #ffc000;
}
.pdp-reviews-wrapper .stars.selected span a.active ~ a {
  color: #cbd5e0;
}
.pdp-reviews-wrapper .comment-form-comment textarea {
  min-height: 120px;
}

/* ═══════════════════════════════════════════
RECOMMENDED PRODUCTS
Figma: x=100, y=2048, width=1240, height=805
4 cards at 295px each, gap ~20px
═══════════════════════════════════════════ */
.pdp-recommended-section {
  padding: 120px 0;
  background: #ffffff;
}
.pdp-recommended-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.pdp-recommended-heading {
  margin-bottom: 32px;
}
.pdp-recommended-eyebrow {
  color: var(--secondary-clay-blue-456793, #456793);

  /* Desktop/Eyebrow/12Px */
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.12px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pdp-recommended-title {
  color: var(--primary-deep-blue-01-a-1628, #0a1628);

  /* Desktop/Headings/H2 - 28 */
  font-family: "DM Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 36.4px */
  letter-spacing: -0.56px;
  text-transform: capitalize;
}
.pdp-recommended-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .pdp-recommended-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 479px) {
  .pdp-recommended-grid {
    grid-template-columns: 1fr;
  }
}

/* Replicated shop product card design */
.pdp-wrapper .pdp-recommended-grid .shop-product-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;

  margin: 0 auto !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0px !important;
  box-shadow: none !important;
  transition: transform 0.2s !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.pdp-wrapper .pdp-recommended-grid .product-image-container {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #eff1f4 !important;
  margin-bottom: 8px !important;
  overflow: hidden !important;
  border: none !important;
  border-radius: 0px !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.pdp-wrapper .pdp-recommended-grid .product-card-img {
  max-width: 80% !important;
  max-height: 80% !important;
  object-fit: contain !important;
  transition: transform 0.3s !important;
  background: transparent !important;
}

.pdp-wrapper .pdp-recommended-grid .sale-badge {
  background-color: #d4800a !important;
}
.pdp-wrapper .pdp-recommended-grid .new-badge {
  background-color: #2b7a3d !important;
}

.pdp-wrapper .pdp-recommended-grid .product-info-container {
  padding: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  background-color: #eff1f4 !important;
  flex-grow: 1 !important;
  border-radius: 0px !important;
  border: none !important;
  box-shadow: none !important;
}
.pdp-wrapper .pdp-recommended-grid .product-card-meta {
  display: flex !important;
  justify-content: space-between !important;
  font-size: 12px !important;
  font-family: "DM Sans", sans-serif !important;
  line-height: 1 !important;
}

.pdp-wrapper .pdp-recommended-grid .product-rating-score {
  color: #2b7a3d !important;
  font-weight: 700 !important;
}

.pdp-wrapper .pdp-recommended-grid .product-card-title a {
  color: #0a1628 !important;
  text-decoration: none !important;
}
.pdp-wrapper .pdp-recommended-grid .product-card-title a:hover {
  color: #456793 !important;
}

.pdp-wrapper .pdp-recommended-grid .product-card-footer {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-top: 4px !important;
}
.pdp-wrapper .pdp-recommended-grid .product-price-box {
  font-family: "DM Sans", sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #0a1628 !important;
}
.pdp-wrapper .pdp-recommended-grid .product-price-box del {
  font-size: 14px !important;
  color: #456793 !important;
  text-decoration: line-through !important;
  margin-left: 6px !important;
  font-weight: 400 !important;
}
.pdp-wrapper .pdp-recommended-grid .product-price-box ins {
  text-decoration: none !important;
  color: #0a1628 !important;
}
.pdp-wrapper .pdp-recommended-grid .product-add-to-cart-btn {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  color: #0a1628 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  transition: color 0.2s !important;
  padding: 0 !important;
}
.pdp-wrapper .pdp-recommended-grid .product-add-to-cart-btn:hover {
  color: #456793 !important;
}
.pdp-wrapper .pdp-recommended-grid .product-add-to-cart-btn.disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* Card Variations styling on recommended grid */
.pdp-wrapper .pdp-recommended-grid .product-card-variations-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-bottom: 8px !important;
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
}
.pdp-wrapper .pdp-recommended-grid .variation-selector-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
}
.pdp-wrapper .pdp-recommended-grid .variation-options-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  row-gap: 10px !important;
  width: 100% !important;
}
.pdp-wrapper .pdp-recommended-grid .variation-option-btn {
  border: 1px solid #cfdaeb !important;
  background-color: #ffffff !important;
  cursor: pointer !important;
  font-family: "DM Sans", sans-serif !important;
  transition: 0.2s !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.pdp-wrapper .pdp-recommended-grid .variation-option-btn.text-pill {
  padding: 3px 8px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  color: #456793 !important;
  border-radius: 3px !important;
  text-align: center !important;
  min-width: 36px !important;
}
.pdp-wrapper .pdp-recommended-grid .variation-option-btn.text-pill:hover {
  border-color: #7ba8c4 !important;
  color: #0a1628 !important;
}
.pdp-wrapper .pdp-recommended-grid .variation-option-btn.text-pill.active {
  background-color: #0a1628 !important;
  border-color: #0a1628 !important;
  color: #ffffff !important;
}
.pdp-wrapper .pdp-recommended-grid .variation-option-btn.color-swatch {
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  border: 1px solid #cfdaeb !important;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px inset !important;
  position: relative !important;
}
.pdp-wrapper .pdp-recommended-grid .variation-option-btn.color-swatch:hover {
  transform: scale(1.15) !important;
  border-color: #7ba8c4 !important;
}
.pdp-wrapper .pdp-recommended-grid .variation-option-btn.color-swatch.active {
  transform: scale(1.15) !important;
  border-color: #0a1628 !important;
  box-shadow:
    #ffffff 0px 0px 0px 1.5px,
    #0a1628 0px 0px 0px 3px !important;
}

/* ═══════════════════════════════════════════
BUNDLES SHORTCODE
═══════════════════════════════════════════ */
.pdp-bundles-shortcode-wrapper {
  background-color: #f7f6f4;
  padding: 80px 0;
}
.pdp-bundles-shortcode-wrapper .home-curated-bundles-section {
  padding: 0 !important;
  background: transparent !important;
}

/* ═══════════════════════════════════════════
FAQ SECTION
Figma: white bg, 2-col (505:610), 80px gap
═══════════════════════════════════════════ */
.pdp-faqs-section {
  background: #eff1f4;
  padding: 120px 0;
}
.pdp-faqs-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .pdp-faqs-container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .pdp-faqs-container {
    padding: 0 20px;
  }
}

.pdp-faqs-grid {
  display: grid;
  grid-template-columns: 505fr 610fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 991px) {
  .pdp-faqs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.pdp-faqs-intro {
  display: flex;
  flex-direction: column;
}
.pdp-faqs-eyebrow {
  color: var(--secondary-clay-blue-456793, #456793);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.12px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pdp-faqs-title {
  color: var(--primary-deep-blue-01-a-1628, #0a1628);

  /* Desktop/Headings/H2 - 28 */
  font-family: "DM Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 36.4px */
  letter-spacing: -0.56px;
  text-transform: capitalize;
}
.pdp-faqs-subtitle {
  color: var(--secondary-clay-blue-456793, #456793);

  /* Desktop/Body/body_16 */
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin-top: 12px;
}

/* Accordion */
.pdp-accordion {
  display: flex;
  flex-direction: column;
}
.pdp-accordion-item {
  overflow: hidden;
  transition: all 0.2s ease;
  border-bottom: 1px solid #cfdaeb;
}
.pdp-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  cursor: pointer;
  user-select: none;
}
.pdp-accordion-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0a1628;
  margin: 0;
  font-family: var(--font-dm-sans);
  letter-spacing: -0.36px;
  text-transform: capitalize;
  line-height: 120%;
  padding: 24px 0;
  transition: all 0.3s ease;
}

.pdp-accordion-item.active .pdp-accordion-header h3 {
  padding: 24px 0 8px;
  transition: all 0.3s ease;
}

/* Plus/minus icon */
.pdp-accordion-arrow {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.pdp-accordion-arrow::before,
.pdp-accordion-arrow::after {
  content: "";
  position: absolute;
  background: #456793;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.pdp-accordion-arrow::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}
.pdp-accordion-arrow::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}
.pdp-accordion-item.active .pdp-accordion-arrow::after {
  transform: rotate(90deg);
  opacity: 0;
}
.pdp-accordion-item.active .pdp-accordion-arrow::before {
  transform: rotate(180deg);
}

.pdp-accordion-content {
  display: none;
  padding: 0 0 20px 0;
  font-size: 16px;
  color: #456793;
  line-height: 1.7;
}
.pdp-accordion-content p {
  margin: 0;
}

/* ═══════════════════════════════════════════
RESPONSIVE OVERRIDES
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .pdp-details-title {
    font-size: 26px;
  }
  .pdp-tab-btn {
    font-size: 14px;
  }
  .pdp-faqs-title {
    font-size: 26px;
  }
  .pdp-recommended-title {
    font-size: 24px;
  }
  .pdp-desc-main-heading {
    font-size: 22px;
  }
  .pdp-qty-and-cart-row {
    gap: 8px;
  }
  .pdp-quantity-selector {
    width: 110px;
  }
}

/* SCF Custom uploaded icon image settings */
.scf-custom-icon {
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
  display: block;
}

.pdp-notices-container {
  display: none;
}

/* ═══════════════════════════════════════════
PREMIUM GLASSMORPHIC FLOATING TOASTS
═══════════════════════════════════════════ */
.pdp-toast-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999999;
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  max-width: 380px;
  width: calc(100% - 48px);
  pointer-events: none;
}

.pdp-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 12px;
  font-family: var(--font-dm-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(120%);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
}

.pdp-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.pdp-toast.hide {
  transform: translateX(120%);
  opacity: 0;
}

/* Success Toast - Glassmorphic green */
.pdp-toast.success {
  background: rgba(236, 253, 245, 0.9);
  border: 1px solid rgba(167, 243, 208, 0.8);
  color: #065f46;
}

/* Error Toast - Glassmorphic red */
.pdp-toast.error {
  background: rgba(254, 242, 242, 0.9);
  border: 1px solid rgba(252, 165, 165, 0.8);
  color: #991b1b;
}

/* Info/Default Toast - Glassmorphic blue */
.pdp-toast.info {
  background: rgba(239, 246, 255, 0.9);
  border: 1px solid rgba(191, 219, 254, 0.8);
  color: #1e3a8a;
}

.pdp-toast-content {
  flex-grow: 1;
  margin-right: 12px;
}

.pdp-toast-content a {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}

.pdp-toast-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.pdp-toast-close:hover {
  opacity: 1;
}

.pdp-add-to-cart-btn.loading {
  background: #15243c !important;
  color: rgba(255, 255, 255, 0.6) !important;
  cursor: wait !important;
}

/* ═══════════════════════════════════════════════════════════
BUNDLE PRODUCT — "What's Included" section
Only shown for product types: bundle, yith_bundle, woosb, composite
═══════════════════════════════════════════════════════════ */

/* Wrapper that sits ABOVE the add-to-cart button */
.pdp-bundle-section {
  margin: 0 0 24px;
  border: 1.5px solid #e8ecf0;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

/* Header row: title + item count */
.pdp-bundle-header {
  padding: 16px 20px;
  background: linear-gradient(135deg, #0a1628 0%, #1a2d48 100%);
  border-bottom: none;
}

.pdp-bundle-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: var(--font-dm-sans, "DM Sans", sans-serif);
}

.pdp-bundle-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.pdp-bundle-count {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Items list container */
.pdp-bundle-items {
  display: flex;
  flex-direction: column;
}

/* Individual bundle item row */
.pdp-bundle-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f2f5;
  background: #ffffff;
  transition: background 0.15s ease;
  position: relative;
}

.pdp-bundle-item:last-child {
  border-bottom: none;
}

.pdp-bundle-item--even {
  background: #fafbfc;
}

.pdp-bundle-item:hover {
  background: #f0f4f8;
}

/* Product thumbnail in bundle item */
.pdp-bundle-item-img-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid #e8ecf0;
  background: #f7f6f4;
}

.pdp-bundle-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.pdp-bundle-item:hover .pdp-bundle-item-img {
  transform: scale(1.06);
}

/* Product name & price block */
.pdp-bundle-item-info {
  flex: 1;
  min-width: 0;
}

.pdp-bundle-item-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0a1628;
  text-decoration: none;
  line-height: 1.35;
  margin-bottom: 5px;
  font-family: var(--font-dm-sans, "DM Sans", sans-serif);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s;
}

.pdp-bundle-item-name:hover {
  color: #456793;
  text-decoration: underline;
}

.pdp-bundle-item-price {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* Sale price (active price - highlighted) */
.pdp-bundle-price-sale {
  font-size: 13px;
  font-weight: 700;
  color: #456793;
  font-family: var(--font-dm-sans, "DM Sans", sans-serif);
}

.pdp-bundle-price-sale .woocommerce-Price-amount {
  color: #456793;
}

/* Regular / original price (struck-through when on sale) */
.pdp-bundle-price-regular {
  font-size: 12px;
  font-weight: 400;
  color: #a0aec0;
  text-decoration: line-through;
  font-family: var(--font-dm-sans, "DM Sans", sans-serif);
}

/* When no sale, show as normal price */
.pdp-bundle-item-price:only-child .pdp-bundle-price-regular,
.pdp-bundle-item-price > .pdp-bundle-price-regular:only-child {
  text-decoration: none;
  color: #718096;
  font-size: 13px;
  font-weight: 500;
}

/* Checkmark on right side */
.pdp-bundle-item-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e6f0e9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f855a;
}

.pdp-bundle-item-check svg {
  width: 14px;
  height: 14px;
}

/* Savings callout at the bottom of the bundle box */
.pdp-bundle-savings {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(90deg, #f0fdf4 0%, #e6ffed 100%);
  border-top: 1px dashed #a8e6b8;
  font-size: 13px;
  font-weight: 600;
  color: #22543d;
  font-family: var(--font-dm-sans, "DM Sans", sans-serif);
}

.pdp-bundle-savings svg {
  flex-shrink: 0;
  color: #2f855a;
}

.pdp-bundle-savings strong {
  color: #2f855a;
  font-weight: 700;
}

/* Bundle cart form — same as simple but button text different */
.pdp-bundle-cart-form {
  margin-top: 0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .pdp-bundle-item {
    padding: 12px 16px;
    gap: 10px;
  }

  .pdp-bundle-item-img-wrap {
    width: 46px;
    height: 46px;
  }

  .pdp-bundle-item-name {
    font-size: 13px;
  }

  .pdp-bundle-title {
    font-size: 13px;
  }

  .pdp-bundle-header {
    padding: 14px 16px;
  }
}

/* ═══════════════════════════════════════════
BUNDLE INLINE VARIATION SELECTORS
═══════════════════════════════════════════ */
.pdp-bundle-item-selector-wrapper {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed #e2e8f0;
}

.pdp-bundle-item-variations {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdp-bundle-item-variation-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pdp-bundle-item-variation-label {
  font-size: 11px;
  font-weight: 700;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-dm-sans, "DM Sans", sans-serif);
}

.pdp-bundle-selected-value-preview {
  color: #0a1628;
  font-weight: 700;
  margin-left: 2px;
}

.pdp-bundle-custom-swatches {
  margin-top: 2px;
}

/* Color Swatches inside Bundle */
.pdp-bundle-custom-swatches .color-swatches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pdp-bundle-swatch.pdp-color-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.pdp-bundle-swatch.pdp-color-swatch:hover {
  transform: scale(1.08);
  border-color: #cbd5e0;
}

.pdp-bundle-swatch.pdp-color-swatch.active {
  border-color: #0a1628;
  transform: scale(1.12);
  box-shadow:
    0 0 0 1.5px #ffffff,
    0 0 0 3px #0a1628;
}

/* Nicotine Strength Pills inside Bundle */
.pdp-bundle-custom-swatches .nicotine-pills-grid,
.pdp-bundle-custom-swatches .fallback-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pdp-bundle-swatch.pdp-nicotine-pill,
.pdp-bundle-swatch.pdp-fallback-pill {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-dm-sans, "DM Sans", sans-serif);
  outline: none;
}

.pdp-bundle-swatch.pdp-nicotine-pill:hover,
.pdp-bundle-swatch.pdp-fallback-pill:hover {
  background: #f7fafc;
  border-color: #cbd5e0;
}

.pdp-bundle-swatch.pdp-nicotine-pill.active,
.pdp-bundle-swatch.pdp-fallback-pill.active {
  background: #0a1628;
  color: #ffffff;
  border-color: #0a1628;
}

/* Custom Dropdowns (e.g. Flavour) inside Bundle */
.pdp-bundle-select-wrapper {
  position: relative;
  width: 100%;
  max-width: 280px;
}

.pdp-bundle-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #2d3748;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-dm-sans, "DM Sans", sans-serif);
  user-select: none;
}

.pdp-bundle-select-trigger:hover {
  border-color: #cbd5e0;
}

.pdp-bundle-select-wrapper.open .pdp-bundle-select-trigger {
  border-color: #0a1628;
  box-shadow: 0 0 0 3px rgba(10, 22, 40, 0.08);
}

.pdp-bundle-select-trigger .select-arrow {
  transition: transform 0.2s ease;
  color: #a0aec0;
}

.pdp-bundle-select-wrapper.open .select-arrow {
  transform: rotate(180deg);
  color: #0a1628;
}

.pdp-bundle-select-options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  max-height: 180px;
  overflow-y: auto;
  z-index: 50;
  padding: 4px 0;
}

.pdp-bundle-select-wrapper.open .pdp-bundle-select-options {
  display: block;
}

.pdp-bundle-select-option {
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: var(--font-dm-sans, "DM Sans", sans-serif);
}

.pdp-bundle-select-option:hover {
  background: #f7fafc;
  color: #0a1628;
}

.pdp-bundle-select-option.selected {
  background: #0a1628;
  color: #ffffff;
  font-weight: 600;
}

@media only screen and (max-width: 1366px) {
  .pdp-breadcrumbs {
    font-size: 14px;
  }

  .pdp-container,
  .pdp-tabs-inner,
  .pdp-recommended-section,
  .pdp-faqs-section,
  .pdp-bundles-shortcode-wrapper {
    padding: 60px 0px;
  }
}

@media only screen and (max-width: 1199px) {
  .pdp-main-grid {
    gap: 40px;
  }

  .pdp-short-desc,
  .pdp-details-rating,
  .pdp-price-container {
    margin-bottom: 16px;
  }
  .pdp-variations-wrapper {
    gap: 24px;
  }

  .pdp-trust-badge .badge-icon,
  .pdp-highlight-card .hl-icon {
    width: 50px;
    height: 50px;
  }

  .pdp-trust-divider {
    height: 104px;
  }

  .pdp-highlight-card .hl-title {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
	.pdp-reviews-wrapper{
		padding:0px !important;
		background: transparent !important;
	}
	.pdp-reviews-wrapper #review_form_wrapper{
		    padding: 20px !important;
	}
  .pdp-container,
  .pdp-tabs-inner,
  .pdp-recommended-section,
  .pdp-faqs-section,
  .pdp-bundles-shortcode-wrapper {
    padding: 40px 0px;
  }

  .pdp-badge {
    font-size: 12px;
  }

  .pdp-gallery-thumb-slide img {
    height: 80px;
  }

  .pdp-main-grid {
    gap: 20px;
  }

  .pdp-details-column {
    margin-top: 12px;
  }

  .pdp-details-eyebrow {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .pdp-details-title {
    letter-spacing: 0;
  }

  .pdp-short-desc,
  .pdp-details-rating,
  .pdp-price-container {
    margin-bottom: 10px;
  }

  .pdp-price-container,
  .pdp-price-container .woocommerce-Price-amount,
  .pdp-price-container bdi {
    font-size: 26px;
  }

  .pdp-tab-btn {
    padding: 10px 16px !important;
  }

  .pdp-description-content p {
    margin-bottom: 10px;
  }

  .pdp-desc-heading-block {
    margin-bottom: 12px;
  }

  .pdp-highlights-row {
    gap: 20px;
  }

  .pdp-recommended-heading {
    margin-bottom: 24px;
  }

  .pdp-faqs-grid {
    gap: 16px;
  }

  .pdp-accordion-header h3 {
    font-size: 16px;
  }

  .pdp-accordion-header h3 {
    padding: 16px 0;
  }

  .pdp-accordion-item.active .pdp-accordion-header h3 {
    padding: 16px 0 8px;
  }
}


@media only screen and (max-width: 575px) {
  .pdp-bundle-item-check {
    display: none;
  }

  .pdp-bundle-item {
    padding: 12px;
  }
  .pdp-gallery-main {
    margin-bottom: 10px;
  }
  .pdp-main-grid {
    gap: 10px;
  }

  .pdp-bundle-item {
    align-items: flex-start;
  }
  .pdp-add-to-cart-btn {
    font-size: 12px !important;
  }

  .pdp-quantity-selector .qty-input {
    font-size: 14px;
  }
  .pdp-quantity-selector {
    width: 88px;
  }
  .pdp-quantity-selector .qty-btn {
    width: 28px;
  }

  .pdp-trust-badges {
    border-bottom: none;
    padding-bottom: 0;
  }

  .pdp-highlight-card {
    width: 46%;
  }

  .pdp-gallery-thumb-slide {
    width: 60px;
    min-width: auto;
    height: auto;
  }

  .pdp-gallery-thumb-slide img {
    height: 58px;
	    padding: 6px;
  }

  .pdp-gallery-main .slick-prev,
  .pdp-gallery-main .slick-next {
    width: 26px;
    height: 26px;
  }

  .pdp-gallery-arrow svg {
    height: 10px;
  }
}
