body.single-product {
  --vpe-primary: #ff3d1f;
  --vpe-dark: #1f1f1f;
  --vpe-success: #16a34a;
  --vpe-radius: 14px;
  --vpe-btn-radius: 8px;
  --vpe-card-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  --vpe-border: 1px solid rgba(15, 23, 42, 0.09);
  --vpe-muted: #667085;
  padding-bottom: 76px;
}

body.single-product div.product .summary {
  background: #fff;
  border: var(--vpe-border);
  border-radius: var(--vpe-radius);
  box-shadow: var(--vpe-card-shadow);
  padding: clamp(18px, 2vw, 30px);
}

body.single-product div.product .summary .product_title,
body.single-product div.product .summary h1.product_title {
  line-height: 1.15;
  margin-bottom: 10px;
}

body.single-product div.product .summary .price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 8px;
  color: var(--vpe-primary);
  font-weight: 800;
}

body.single-product div.product .summary .price del {
  color: #98a2b3;
  font-size: 0.82em;
  opacity: 1;
  font-weight: 500;
}

body.single-product div.product .summary .price ins {
  color: var(--vpe-primary);
  text-decoration: none;
  font-weight: 800;
}

.vpe-savings-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 61, 31, 0.08);
  color: var(--vpe-primary);
  font-size: 13px;
  font-weight: 700;
}

.vpe-stock-delivery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 14px 0 9px;
  color: #344054;
  font-size: 14px;
  font-weight: 600;
}

.vpe-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--vpe-success);
  margin-right: 6px;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.vpe-in-stock {
  color: var(--vpe-success);
}

.vpe-out-stock {
  color: #dc2626;
}

.vpe-separator {
  color: #d0d5dd;
}

.vpe-delivery-estimate {
  color: #475467;
  font-size: 13px;
  margin: 8px 0 16px;
}

body.single-product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

body.single-product form.cart .quantity {
  margin-right: 0 !important;
}

body.single-product form.cart .quantity input.qty {
  min-height: 44px;
  border-radius: var(--vpe-btn-radius);
  border: 1px solid #d0d5dd;
}

body.single-product div.product form.cart .button.single_add_to_cart_button,
body.single-product button.single_add_to_cart_button {
  min-height: 46px;
  border-radius: var(--vpe-btn-radius);
  background: var(--vpe-primary) !important;
  color: #fff !important;
  border: 0 !important;
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 800;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

body.single-product div.product form.cart .button.single_add_to_cart_button:hover,
body.single-product button.single_add_to_cart_button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(255, 61, 31, 0.22);
  opacity: 0.95;
}

.vpe-buy-now-button,
.vpe-sticky-buy {
  min-height: 46px;
  border-radius: var(--vpe-btn-radius) !important;
  background: var(--vpe-dark) !important;
  color: #fff !important;
  border: 0 !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  font-weight: 800 !important;
}

.vpe-buy-now-button:hover,
.vpe-sticky-buy:hover {
  opacity: 0.92;
}

.vpe-trust-badges {
  margin: 16px 0 0;
}

.vpe-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vpe-trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vpe-trust-badge {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid rgba(255, 61, 31, 0.13);
  background: linear-gradient(180deg, rgba(255, 61, 31, 0.04), rgba(255, 255, 255, 0.95));
  border-radius: calc(var(--vpe-radius) - 4px);
  padding: 12px;
}

.vpe-trust-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 61, 31, 0.08);
  font-size: 17px;
  flex: 0 0 auto;
}

.vpe-trust-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}

.vpe-trust-copy strong {
  color: #101828;
  font-size: 13px;
}

.vpe-trust-copy small {
  color: var(--vpe-muted);
  font-size: 11px;
}

.vpe-sticky-cart {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(110%);
  transition: transform 0.22s ease;
  backdrop-filter: blur(16px);
}

.vpe-sticky-cart.vpe-is-visible {
  transform: translateY(0);
}

.vpe-sticky-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vpe-sticky-product {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.vpe-sticky-image img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.vpe-sticky-info {
  min-width: 0;
}

.vpe-sticky-info strong {
  display: block;
  max-width: 440px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #101828;
  font-size: 14px;
}

.vpe-sticky-price {
  display: flex;
  gap: 8px;
  align-items: baseline;
  color: var(--vpe-primary);
  font-weight: 800;
  font-size: 14px;
}

.vpe-sticky-price del {
  color: #98a2b3;
  font-weight: 500;
}

.vpe-sticky-price ins {
  color: var(--vpe-primary);
  text-decoration: none;
}

.vpe-sticky-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.vpe-sticky-qty-wrap {
  height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #d0d5dd;
  border-radius: var(--vpe-btn-radius);
  overflow: hidden;
  background: #fff;
}

.vpe-sticky-qty-wrap button {
  width: 34px;
  height: 42px;
  border: 0;
  background: #fff;
  color: #101828;
  font-weight: 800;
  cursor: pointer;
}

.vpe-sticky-qty {
  width: 44px;
  height: 42px;
  border: 0 !important;
  text-align: center;
  appearance: textfield;
  font-weight: 700;
}

.vpe-sticky-qty::-webkit-outer-spin-button,
.vpe-sticky-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.vpe-sticky-add {
  min-height: 42px;
  border-radius: var(--vpe-btn-radius) !important;
  background: var(--vpe-primary) !important;
  color: #fff !important;
  border: 0 !important;
  padding: 0 26px !important;
  font-weight: 800 !important;
}

.vpe-sticky-buy {
  min-height: 42px;
  padding: 0 26px !important;
}

.vpe-hide-desktop {
  display: none !important;
}

@media (max-width: 768px) {
  body.single-product {
    padding-bottom: 84px;
  }

  body.single-product div.product .summary {
    padding: 18px;
    border-radius: 12px;
  }

  body.single-product form.cart {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  body.single-product form.cart .variations,
  body.single-product form.cart .woocommerce-variation,
  body.single-product form.cart .woocommerce-variation-add-to-cart {
    grid-column: 1 / -1;
  }

  body.single-product div.product form.cart .button.single_add_to_cart_button,
  .vpe-buy-now-button {
    width: 100%;
  }

  .vpe-trust-grid {
    grid-template-columns: 1fr;
  }

  .vpe-sticky-inner {
    width: calc(100% - 20px);
    min-height: 78px;
    gap: 10px;
  }

  .vpe-sticky-product {
    flex: 1 1 auto;
    min-width: 0;
  }

  .vpe-sticky-image img {
    width: 42px;
    height: 42px;
  }

  .vpe-sticky-info strong {
    max-width: 150px;
    font-size: 12px;
  }

  .vpe-sticky-price {
    font-size: 13px;
  }

  .vpe-sticky-actions {
    gap: 6px;
  }

  .vpe-sticky-qty-wrap {
    display: none;
  }

  .vpe-sticky-add,
  .vpe-sticky-buy {
    min-height: 42px;
    padding: 0 14px !important;
    font-size: 13px !important;
  }

  .vpe-hide-mobile {
    display: none !important;
  }

  .vpe-hide-desktop {
    display: block !important;
  }
}

/* Phase 1.1/1.3: Concept C inline price chip */
body.single-product div.product .summary .price {
  display: inline-flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
  width: auto !important;
  margin: 12px 10px 10px 0 !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
}

body.single-product div.product .summary .price del {
  order: 2;
  color: #6b7280 !important;
  font-size: 0.64em !important;
  opacity: 1 !important;
  font-weight: 600 !important;
  text-decoration-thickness: 1.5px;
}

body.single-product div.product .summary .price ins {
  order: 1;
  color: var(--vpe-primary) !important;
  text-decoration: none !important;
  font-weight: 900 !important;
}

.vpe-savings-badge.vpe-savings-chip {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  margin: 12px 0 10px !important;
  padding: 7px 12px;
  vertical-align: middle;
  border-radius: 999px;
  border: 1px solid rgba(255, 61, 31, 0.22);
  background: linear-gradient(180deg, rgba(255, 61, 31, 0.095), rgba(255, 61, 31, 0.045));
  box-shadow: 0 8px 18px rgba(255, 61, 31, 0.10);
  color: var(--vpe-primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.vpe-savings-badge.vpe-savings-chip svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.vpe-savings-badge .vpe-savings-text {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.vpe-savings-badge .amount,
.vpe-savings-badge .woocommerce-Price-amount {
  color: inherit !important;
  font-weight: 800;
}

.vpe-savings-dot {
  opacity: 0.7;
}

.vpe-delivery-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: var(--vpe-primary);
  vertical-align: -3px;
  margin-right: 4px;
}

.vpe-delivery-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vpe-trust-badges.vpe-trust-segmented {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 !important;
  width: 100%;
  margin: 16px 0 0 !important;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: calc(var(--vpe-radius) + 2px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.vpe-trust-badges.vpe-trust-segmented .vpe-trust-badge {
  min-width: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  position: relative;
}

.vpe-trust-badges.vpe-trust-segmented .vpe-trust-badge:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22%;
  right: 0;
  width: 1px;
  height: 56%;
  background: linear-gradient(180deg, transparent, rgba(255, 61, 31, 0.22), transparent);
}

.vpe-trust-badges.vpe-trust-segmented .vpe-trust-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 61, 31, 0.075);
  color: var(--vpe-primary);
  flex: 0 0 auto;
  font-size: 0;
}

.vpe-trust-badges.vpe-trust-segmented .vpe-trust-icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vpe-trust-badges.vpe-trust-segmented .vpe-trust-copy {
  min-width: 0;
  display: block;
  line-height: 1;
}

.vpe-trust-badges.vpe-trust-segmented .vpe-trust-copy strong {
  display: block;
  color: #101828;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.015em;
}

.vpe-trust-badges.vpe-trust-segmented .vpe-trust-copy small {
  display: none !important;
}

@media (max-width: 768px) {
  body.single-product div.product .summary .price {
    gap: 7px !important;
    margin-right: 6px !important;
    margin-bottom: 8px !important;
  }

  .vpe-savings-badge.vpe-savings-chip {
    gap: 5px;
    padding: 6px 9px;
    margin-top: 10px !important;
    margin-bottom: 8px !important;
    font-size: 11.2px;
    box-shadow: 0 6px 14px rgba(255, 61, 31, 0.08);
  }

  .vpe-savings-badge.vpe-savings-chip svg {
    width: 13px;
    height: 13px;
  }

  .vpe-trust-badges.vpe-trust-segmented {
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.055);
  }

  .vpe-trust-badges.vpe-trust-segmented .vpe-trust-badge {
    gap: 4px;
    padding: 10px 5px;
  }

  .vpe-trust-badges.vpe-trust-segmented .vpe-trust-icon {
    width: 19px;
    height: 19px;
    background: transparent;
  }

  .vpe-trust-badges.vpe-trust-segmented .vpe-trust-icon svg {
    width: 17px;
    height: 17px;
    stroke-width: 2;
  }

  .vpe-trust-badges.vpe-trust-segmented .vpe-trust-copy strong {
    font-size: clamp(8px, 2.15vw, 10.5px);
    letter-spacing: -0.035em;
  }
}

@media (max-width: 380px) {
  .vpe-savings-badge.vpe-savings-chip {
    font-size: 10.5px;
    padding: 6px 8px;
  }

  .vpe-trust-badges.vpe-trust-segmented .vpe-trust-badge {
    gap: 3px;
    padding-left: 3px;
    padding-right: 3px;
  }

  .vpe-trust-badges.vpe-trust-segmented .vpe-trust-icon {
    width: 17px;
    height: 17px;
  }

  .vpe-trust-badges.vpe-trust-segmented .vpe-trust-icon svg {
    width: 15px;
    height: 15px;
  }
}

/* Phase 1.2/1.3: Correct purchase layout + real checkout Buy Now */
body.single-product div.product form.cart:not(.grouped_form) {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100%;
}

body.single-product div.product form.cart .variations,
body.single-product div.product form.cart .single_variation_wrap,
body.single-product div.product form.cart .woocommerce-variation,
body.single-product div.product form.cart .reset_variations {
  grid-column: 1 / -1;
  width: 100%;
}

body.single-product div.product form.cart .woocommerce-variation-add-to-cart {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100%;
}

body.single-product div.product form.cart .quantity,
body.single-product div.product form.cart .woocommerce-variation-add-to-cart .quantity {
  grid-column: 1;
  width: auto !important;
  margin: 0 !important;
  align-self: stretch;
}

body.single-product div.product form.cart .quantity input.qty,
body.single-product div.product form.cart .woocommerce-variation-add-to-cart .quantity input.qty {
  height: 48px !important;
  min-height: 48px !important;
  border-radius: var(--vpe-btn-radius) !important;
}

body.single-product div.product form.cart .button.single_add_to_cart_button,
body.single-product div.product form.cart .woocommerce-variation-add-to-cart .button.single_add_to_cart_button {
  grid-column: 2;
  width: 100% !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
}

body.single-product div.product form.cart .vpe-buy-now-button,
body.single-product div.product form.cart .woocommerce-variation-add-to-cart .vpe-buy-now-button {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  background: linear-gradient(180deg, rgba(255, 61, 31, 0.055), rgba(255, 61, 31, 0.025)) !important;
  color: #101828 !important;
  border: 1px solid rgba(255, 61, 31, 0.16) !important;
  box-shadow: none !important;
  font-weight: 900 !important;
}

body.single-product div.product form.cart .vpe-buy-now-button:hover,
body.single-product div.product form.cart .woocommerce-variation-add-to-cart .vpe-buy-now-button:hover {
  background: linear-gradient(180deg, rgba(255, 61, 31, 0.08), rgba(255, 61, 31, 0.04)) !important;
  border-color: rgba(255, 61, 31, 0.26) !important;
  transform: translateY(-1px);
}

body.single-product div.product form.cart input[type="hidden"] {
  display: none !important;
}

@media (max-width: 768px) {
  body.single-product div.product form.cart:not(.grouped_form),
  body.single-product div.product form.cart .woocommerce-variation-add-to-cart {
    grid-template-columns: auto minmax(0, 1fr) !important;
    gap: 9px !important;
  }

  body.single-product div.product form.cart .quantity input.qty,
  body.single-product div.product form.cart .woocommerce-variation-add-to-cart .quantity input.qty,
  body.single-product div.product form.cart .button.single_add_to_cart_button,
  body.single-product div.product form.cart .woocommerce-variation-add-to-cart .button.single_add_to_cart_button,
  body.single-product div.product form.cart .vpe-buy-now-button,
  body.single-product div.product form.cart .woocommerce-variation-add-to-cart .vpe-buy-now-button {
    min-height: 48px !important;
    height: 48px;
  }
}


/* Phase 1.3: Buy Now below Add to Cart + old trust markup hidden for cache safety */
.vpe-trust-badges,
.vpe-trust-grid,
.vpe-trust-inline,
.vpe-trust-segmented {
  display: none !important;
}

body.single-product div.product .summary .vpe-buy-now-wrap {
  width: 100% !important;
  margin: 10px 0 0 !important;
  clear: both;
}

body.single-product div.product .summary .vpe-buy-now-button,
body.single-product div.product .summary .vpe-buy-now-wrap .vpe-buy-now-button {
  width: 100% !important;
  min-height: 52px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  border-radius: var(--vpe-btn-radius) !important;
  background: linear-gradient(180deg, rgba(255, 61, 31, 0.055), rgba(255, 61, 31, 0.025)) !important;
  color: #101828 !important;
  border: 1px solid rgba(255, 61, 31, 0.16) !important;
  box-shadow: none !important;
  font-weight: 900 !important;
  text-align: center !important;
}

body.single-product div.product .summary .vpe-buy-now-button:hover,
body.single-product div.product .summary .vpe-buy-now-wrap .vpe-buy-now-button:hover {
  background: linear-gradient(180deg, rgba(255, 61, 31, 0.08), rgba(255, 61, 31, 0.04)) !important;
  border-color: rgba(255, 61, 31, 0.26) !important;
  transform: translateY(-1px);
}

body.single-product div.product form.cart:not(.grouped_form) {
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  body.single-product div.product .summary .vpe-buy-now-wrap {
    margin-top: 10px !important;
  }

  body.single-product div.product .summary .vpe-buy-now-button,
  body.single-product div.product .summary .vpe-buy-now-wrap .vpe-buy-now-button {
    min-height: 52px !important;
    height: 52px !important;
    font-size: 16px !important;
  }
}

/* Phase 2.0: Product Highlights */
.vpe-product-highlights {
  margin: 16px 0 0;
  padding: 16px;
  border: 1px solid rgba(255, 61, 31, 0.12);
  border-radius: calc(var(--vpe-radius) - 2px);
  background: linear-gradient(180deg, rgba(255, 61, 31, 0.045), rgba(255, 255, 255, 0.96));
}

.vpe-product-highlights h3 {
  margin: 0 0 11px !important;
  color: #101828;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.vpe-product-highlights ul {
  display: grid;
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.vpe-product-highlights li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  margin: 0 !important;
  color: #344054;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.vpe-product-highlights .vpe-highlight-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  margin-top: 0;
  border-radius: 999px;
  background: rgba(255, 61, 31, 0.09);
  color: var(--vpe-primary);
}

.vpe-product-highlights .vpe-highlight-icon svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Phase 2.0: Feature Cards */
.vpe-feature-cards-section {
  clear: both;
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 22px;
}

.vpe-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.vpe-section-heading h2 {
  margin: 0 !important;
  color: #101828;
  font-size: clamp(20px, 2vw, 28px) !important;
  font-weight: 900 !important;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.vpe-feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vpe-feature-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: var(--vpe-radius);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.vpe-feature-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 61, 31, 0.08), rgba(255, 244, 240, 0.85));
}

.vpe-feature-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vpe-feature-placeholder {
  display: grid;
  place-items: center;
  color: var(--vpe-primary);
}

.vpe-feature-placeholder svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vpe-feature-content {
  padding: 14px 15px 16px;
}

.vpe-feature-content h3 {
  margin: 0 0 7px !important;
  color: #101828;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.vpe-feature-content p {
  margin: 0 !important;
  color: #667085;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .vpe-product-highlights {
    padding: 14px;
    border-radius: 12px;
  }

  .vpe-product-highlights li {
    font-size: 12.5px;
  }

  .vpe-feature-cards-section {
    width: calc(100% - 22px);
    margin-top: 24px;
  }

  .vpe-feature-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vpe-feature-card {
    border-radius: 13px;
  }

  .vpe-feature-content {
    padding: 13px 14px 15px;
  }
}


/* Phase 2.1: Product Highlights image banner */
.vpe-product-highlights li:not(:last-child) {
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.10);
}

.vpe-product-highlights .vpe-highlight-icon {
  background: rgba(22, 163, 74, 0.10);
  color: var(--vpe-success);
}

.vpe-product-highlights-wide {
  clear: both;
  width: min(1180px, calc(100% - 32px));
  margin: 30px auto 22px;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(330px, 45%) minmax(0, 1fr);
  align-items: stretch;
  min-height: 260px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--vpe-radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.vpe-product-highlights-wide .vpe-highlights-copy {
  position: relative;
  z-index: 3;
  padding: clamp(24px, 3.4vw, 42px);
  margin-right: -80px;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.98) 70%, rgba(255,255,255,0) 100%);
}

.vpe-product-highlights-wide h2 {
  margin: 0 0 18px !important;
  color: #101828;
  font-size: clamp(22px, 2.4vw, 32px) !important;
  font-weight: 900 !important;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.vpe-product-highlights-wide ul {
  display: grid;
  gap: 0;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  max-width: 520px;
}

.vpe-product-highlights-wide li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 0 !important;
  padding: 12px 0;
  color: #1f2937;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.12);
}

.vpe-product-highlights-wide li:first-child {
  padding-top: 0;
}

.vpe-product-highlights-wide li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.vpe-product-highlights-wide .vpe-highlight-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.10);
  color: var(--vpe-success);
}

.vpe-product-highlights-wide .vpe-highlight-icon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vpe-product-highlights-wide .vpe-highlights-media {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #f8fafc;
}

.vpe-product-highlights-wide .vpe-highlights-media::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 36%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.92) 26%, rgba(255,255,255,0.56) 58%, rgba(255,255,255,0) 100%);
  backdrop-filter: blur(1.4px);
}

.vpe-product-highlights-wide .vpe-highlights-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .vpe-product-highlights-wide {
    width: calc(100% - 22px);
    grid-template-columns: 1fr;
    min-height: 0;
    margin: 24px auto 18px;
    border-radius: 13px;
  }

  .vpe-product-highlights-wide .vpe-highlights-copy {
    margin-right: 0;
    padding: 20px 18px;
    background: #fff;
  }

  .vpe-product-highlights-wide h2 {
    font-size: 22px !important;
    margin-bottom: 12px !important;
  }

  .vpe-product-highlights-wide li {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
    font-size: 13.5px;
  }

  .vpe-product-highlights-wide .vpe-highlights-media {
    min-height: 170px;
    order: 2;
  }

  .vpe-product-highlights-wide .vpe-highlights-media::before {
    inset: 0 0 auto 0;
    width: 100%;
    height: 44px;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.72) 45%, rgba(255,255,255,0) 100%);
    backdrop-filter: blur(0.8px);
  }

  .vpe-product-highlights-wide .vpe-highlights-media img {
    min-height: 170px;
  }
}

/* Phase 2.2: Product Highlights stays inside summary below price + compact image focus layout */
body.single-product div.product .summary .vpe-product-highlights {
  clear: both;
  width: 100%;
  margin: 14px 0 16px !important;
}

body.single-product div.product .summary .vpe-product-highlights h3 {
  margin: 0 0 10px !important;
}

body.single-product div.product .summary .vpe-product-highlights ul {
  gap: 0 !important;
}

body.single-product div.product .summary .vpe-product-highlights li {
  padding: 8px 0 !important;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.11);
}

body.single-product div.product .summary .vpe-product-highlights li:first-child {
  padding-top: 0 !important;
}

body.single-product div.product .summary .vpe-product-highlights li:last-child {
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

body.single-product div.product .summary .vpe-product-highlights-with-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(128px, 38%);
  align-items: stretch;
  gap: 0;
  padding: 0 !important;
  overflow: hidden;
  min-height: 0 !important;
  height: auto !important;
  background: #fff !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-copy {
  position: relative;
  z-index: 3;
  padding: 16px 18px;
  margin-right: -44px;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.98) 68%, rgba(255,255,255,0) 100%);
}

body.single-product div.product .summary .vpe-product-highlights-with-media h3 {
  font-size: clamp(18px, 1.6vw, 22px) !important;
  letter-spacing: -0.03em;
}

body.single-product div.product .summary .vpe-product-highlights-with-media li {
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  font-size: 13px;
  line-height: 1.3;
}

body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-media {
  position: relative;
  min-height: 0 !important;
  height: auto !important;
  overflow: hidden;
  background: #f8fafc;
}

body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-media::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 44%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.94) 20%, rgba(255,255,255,0.58) 56%, rgba(255,255,255,0) 100%);
  backdrop-filter: blur(1px);
}

body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-media img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-width: none !important;
  display: block;
  object-fit: cover;
  object-position: var(--vpe-img-x, 50%) var(--vpe-img-y, 50%);
}

@media (max-width: 768px) {
  body.single-product div.product .summary .vpe-product-highlights-with-media {
    grid-template-columns: 1fr;
  }

  body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-copy {
    margin-right: 0;
    padding: 15px 16px;
    background: #fff;
  }

  body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-media {
    min-height: 150px !important;
    height: 150px !important;
  }

  body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-media::before {
    inset: 0 0 auto 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.78) 45%, rgba(255,255,255,0) 100%);
  }
}

/* Phase 2.3: safer compact highlights media layout and mobile visibility fix */
body.single-product div.product .summary .vpe-product-highlights-with-media {
  grid-template-columns: minmax(0, 50%) minmax(0, 50%) !important;
  align-items: stretch !important;
  max-height: none !important;
  contain: layout paint;
}

body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-copy {
  min-width: 0;
  padding: 16px 18px !important;
  margin-right: -38px !important;
}

body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-media {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-width: 0;
  min-height: 100% !important;
  height: auto !important;
  align-self: stretch !important;
  isolation: isolate;
}

body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-media img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  object-fit: cover !important;
  object-position: var(--vpe-img-x, 50%) var(--vpe-img-y, 50%) !important;
}

@media (max-width: 768px) {
  body.single-product div.product .summary .vpe-product-highlights-with-media {
    grid-template-columns: 1fr !important;
  }

  body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-copy {
    margin-right: 0 !important;
    padding: 15px 16px !important;
    background: #fff !important;
  }

  body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-media {
    display: block !important;
    min-height: 140px !important;
    height: 140px !important;
    max-height: 140px !important;
  }

  body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-media img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }
}

/* Phase 2.4: hard mobile highlights image visibility + top/bottom position control */
@media (max-width: 768px) {
  body.single-product div.product .summary .vpe-product-highlights-with-media,
  body.single-product div.product .summary section.vpe-product-highlights-with-media {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    width: 100% !important;
    overflow: hidden !important;
    max-height: none !important;
    height: auto !important;
    min-height: 0 !important;
  }

  body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-copy {
    order: 1 !important;
    width: 100% !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 15px 16px !important;
    background: #fff !important;
    position: relative !important;
    z-index: 2 !important;
  }

  body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-media {
    order: 2 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    flex: 0 0 150px !important;
    min-height: 150px !important;
    height: 150px !important;
    max-height: 150px !important;
    overflow: hidden !important;
    transform: none !important;
    clip-path: none !important;
  }

  body.single-product div.product .summary .vpe-product-highlights-with-media.vpe-mobile-image-top .vpe-highlights-media {
    order: 1 !important;
  }

  body.single-product div.product .summary .vpe-product-highlights-with-media.vpe-mobile-image-top .vpe-highlights-copy {
    order: 2 !important;
  }

  body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-media::before {
    display: block !important;
    content: '' !important;
    position: absolute !important;
    inset: 0 0 auto 0 !important;
    width: 100% !important;
    height: 34px !important;
    z-index: 2 !important;
    pointer-events: none !important;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.72) 50%, rgba(255,255,255,0) 100%) !important;
  }

  body.single-product div.product .summary .vpe-product-highlights-with-media.vpe-mobile-image-top .vpe-highlights-media::before {
    inset: auto 0 0 0 !important;
    background: linear-gradient(0deg, #fff 0%, rgba(255,255,255,0.72) 50%, rgba(255,255,255,0) 100%) !important;
  }

  body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-media img,
  body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-media picture,
  body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-media source {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  body.single-product div.product .summary .vpe-product-highlights-with-media .vpe-highlights-media img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: var(--vpe-img-x, 50%) var(--vpe-img-y, 50%) !important;
  }
}

@media (min-width: 769px) {
  body.single-product div.product .summary .vpe-product-highlights-with-media {
    grid-template-columns: minmax(0, 50%) minmax(0, 50%) !important;
  }
}

/* Phase 2.5: Product Specifications Table */
body.single-product .vpe-specifications-section {
  clear: both;
  box-sizing: border-box;
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 28px;
  padding: 30px 34px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--vpe-radius, 16px);
  box-shadow: var(--vpe-card-shadow, 0 12px 34px rgba(15, 23, 42, 0.06));
}

body.single-product .vpe-specs-header {
  margin: 0 0 20px;
}

body.single-product .vpe-specs-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: var(--vpe-success, #16a34a);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.single-product .vpe-specs-kicker svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.8;
}

body.single-product .vpe-specs-header h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.1;
  font-weight: 800;
}

body.single-product .vpe-specs-table {
  border-top: 1px solid rgba(17, 24, 39, 0.10);
  border-left: 1px solid rgba(17, 24, 39, 0.08);
}

body.single-product .vpe-spec-row {
  display: grid;
  grid-template-columns: minmax(180px, 38%) minmax(0, 1fr);
  min-height: 62px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.10);
}

body.single-product .vpe-spec-label,
body.single-product .vpe-spec-value {
  display: flex;
  align-items: center;
  padding: 16px 22px;
  font-size: 16px;
  line-height: 1.45;
}

body.single-product .vpe-spec-label {
  color: #111827;
  font-weight: 800;
  background: rgba(249, 250, 251, 0.64);
  border-right: 1px solid rgba(17, 24, 39, 0.08);
}

body.single-product .vpe-spec-value {
  color: #1f2937;
  font-weight: 500;
  word-break: break-word;
}

@media (max-width: 768px) {
  body.single-product .vpe-specifications-section {
    width: calc(100% - 22px);
    margin: 18px auto 22px;
    padding: 18px 16px;
    border-radius: 16px;
  }

  body.single-product .vpe-specs-header {
    margin-bottom: 14px;
  }

  body.single-product .vpe-specs-kicker {
    font-size: 11px;
    margin-bottom: 7px;
  }

  body.single-product .vpe-specs-header h2 {
    font-size: 23px;
  }

  body.single-product .vpe-specs-table {
    border-left: 0;
  }

  body.single-product .vpe-spec-row {
    grid-template-columns: minmax(94px, 36%) minmax(0, 1fr);
    min-height: 56px;
    position: relative;
  }

  body.single-product .vpe-spec-label,
  body.single-product .vpe-spec-value {
    padding: 13px 10px;
    font-size: 13px;
  }

  body.single-product .vpe-spec-label {
    background: transparent;
  }

  body.single-product .vpe-spec-value {
    padding-right: 24px;
  }

  body.single-product .vpe-spec-row::after {
    content: '›';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(17, 24, 39, 0.38);
    font-size: 22px;
    line-height: 1;
  }
}

/* Phase 2.7: How to Use Section */
body.single-product .vpe-howto-section {
  clear: both;
  display: block;
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 24px auto 28px;
  padding: 30px 34px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--vpe-radius, 16px);
  box-shadow: var(--vpe-card-shadow, 0 12px 34px rgba(15, 23, 42, 0.06));
  overflow: hidden;
}

body.single-product .vpe-howto-header {
  text-align: center;
  margin: 0 auto 26px;
  max-width: 720px;
}

body.single-product .vpe-howto-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: var(--vpe-success, #16a34a);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.single-product .vpe-howto-kicker::before,
body.single-product .vpe-howto-kicker::after {
  content: '';
  display: block;
  width: 42px;
  height: 1px;
  background: rgba(22, 163, 74, 0.46);
}

body.single-product .vpe-howto-header h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -0.035em;
}

body.single-product .vpe-howto-subtitle {
  margin: 0 auto;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
  max-width: 620px;
}

body.single-product .vpe-howto-grid {
  display: grid;
  grid-template-columns: repeat(var(--vpe-howto-cols, 5), minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

body.single-product .vpe-howto-step {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

body.single-product .vpe-howto-number {
  position: absolute;
  z-index: 3;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--vpe-success, #16a34a);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25);
}

body.single-product .vpe-howto-image {
  display: block;
  width: 100%;
  height: 156px;
  background: #f8fafc;
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

body.single-product .vpe-howto-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

body.single-product .vpe-howto-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vpe-success, #16a34a);
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.10), rgba(22, 163, 74, 0.03));
}

body.single-product .vpe-howto-content {
  padding: 18px 16px 20px;
  text-align: center;
}

body.single-product .vpe-howto-content h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: -0.02em;
}

body.single-product .vpe-howto-content p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.58;
  font-weight: 500;
}

body.single-product .vpe-howto-tip {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 780px;
  margin: 28px auto 0;
  padding: 16px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.13), rgba(22, 163, 74, 0.05));
  color: #111827;
}

body.single-product .vpe-howto-tip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--vpe-success, #16a34a);
  color: #fff;
}

body.single-product .vpe-howto-tip strong {
  display: block;
  margin: 0 0 2px;
  color: #111827;
  font-size: 15px;
  font-weight: 850;
}

body.single-product .vpe-howto-tip p {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  body.single-product .vpe-howto-section {
    width: calc(100% - 22px);
    margin: 18px auto 22px;
    padding: 20px 14px;
    border-radius: 16px;
  }

  body.single-product .vpe-howto-header {
    margin: 0 auto 20px;
  }

  body.single-product .vpe-howto-kicker {
    font-size: 11px;
    margin-bottom: 8px;
    gap: 9px;
  }

  body.single-product .vpe-howto-kicker::before,
  body.single-product .vpe-howto-kicker::after {
    width: 32px;
  }

  body.single-product .vpe-howto-header h2 {
    font-size: 28px;
  }

  body.single-product .vpe-howto-subtitle {
    font-size: 14px;
    line-height: 1.55;
  }

  body.single-product .vpe-howto-grid {
    display: block;
  }

  body.single-product .vpe-howto-step {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 96px;
    margin: 0 0 12px;
    border-radius: 14px;
    overflow: visible;
  }

  body.single-product .vpe-howto-number {
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  body.single-product .vpe-howto-image {
    width: 96px;
    height: 96px;
    border-bottom: 0;
    border-right: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 14px 0 0 14px;
  }

  body.single-product .vpe-howto-content {
    padding: 14px 14px 14px 18px;
    text-align: left;
  }

  body.single-product .vpe-howto-content h3 {
    margin-bottom: 5px;
    font-size: 16px;
  }

  body.single-product .vpe-howto-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  body.single-product .vpe-howto-tip {
    align-items: flex-start;
    margin: 16px 0 0;
    padding: 14px 15px;
    border-radius: 14px;
  }
}

/* Phase 2.8: FAQ accordion section */
body.single-product .vpe-faq-section {
  clear: both;
  display: block;
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 24px auto 28px;
  padding: 30px 34px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--vpe-radius, 16px);
  box-shadow: var(--vpe-card-shadow, 0 12px 34px rgba(15, 23, 42, 0.06));
  overflow: hidden;
}
body.single-product .vpe-faq-header{text-align:center;margin:0 auto 24px;max-width:760px;}
body.single-product .vpe-faq-kicker{display:inline-flex;align-items:center;gap:12px;margin:0 0 10px;color:var(--vpe-success,#16a34a);font-size:13px;font-weight:850;line-height:1.2;letter-spacing:.14em;text-transform:uppercase;}
body.single-product .vpe-faq-kicker:before,body.single-product .vpe-faq-kicker:after{content:'';display:block;width:42px;height:1px;background:rgba(22,163,74,.46);}
body.single-product .vpe-faq-header h2{margin:0 0 8px;color:#111827;font-size:36px;line-height:1.1;font-weight:850;letter-spacing:-.035em;}
body.single-product .vpe-faq-subtitle{margin:0 auto;color:#6b7280;font-size:16px;line-height:1.6;max-width:620px;}
body.single-product .vpe-faq-list{display:grid;gap:12px;margin:0;padding:0;}
body.single-product .vpe-faq-item{display:block;margin:0;padding:0;border:1px solid rgba(17,24,39,.10);border-radius:15px;background:#fff;box-shadow:0 8px 22px rgba(15,23,42,.035);overflow:hidden;}
body.single-product .vpe-faq-question{display:flex;align-items:center;gap:12px;width:100%;margin:0;padding:15px 18px;color:#111827;font-size:16px;line-height:1.35;font-weight:850;cursor:pointer;list-style:none;}
body.single-product .vpe-faq-question::-webkit-details-marker{display:none;}
body.single-product .vpe-faq-qicon{display:inline-flex;align-items:center;justify-content:center;flex:0 0 28px;width:28px;height:28px;border-radius:999px;background:var(--vpe-success,#16a34a);color:#fff;font-size:15px;line-height:1;font-weight:850;}
body.single-product .vpe-faq-question-text{min-width:0;flex:1 1 auto;}
body.single-product .vpe-faq-chevron{flex:0 0 auto;width:18px;height:18px;color:#111827;transition:transform .18s ease;}
body.single-product .vpe-faq-item[open] .vpe-faq-chevron{transform:rotate(180deg);}
body.single-product .vpe-faq-answer{margin:0 18px 18px 58px;padding:16px 18px;border-radius:14px;background:linear-gradient(135deg,rgba(22,163,74,.10),rgba(22,163,74,.035));color:#374151;font-size:15px;line-height:1.65;font-weight:500;}
body.single-product .vpe-faq-answer p{margin:0;padding:0;color:inherit;font-size:inherit;line-height:inherit;font-weight:inherit;}
@media (max-width:768px){
  body.single-product .vpe-faq-section{width:calc(100% - 22px);max-width:none;margin:18px auto 22px;padding:20px 14px;border-radius:16px;}
  body.single-product .vpe-faq-header{margin:0 auto 20px;}
  body.single-product .vpe-faq-kicker{font-size:11px;margin-bottom:8px;gap:9px;}
  body.single-product .vpe-faq-kicker:before,body.single-product .vpe-faq-kicker:after{width:32px;}
  body.single-product .vpe-faq-header h2{font-size:28px;line-height:1.12;}
  body.single-product .vpe-faq-subtitle{font-size:14px;line-height:1.55;}
  body.single-product .vpe-faq-list{gap:10px;}
  body.single-product .vpe-faq-question{gap:10px;padding:13px;font-size:14px;line-height:1.35;}
  body.single-product .vpe-faq-qicon{flex-basis:24px;width:24px;height:24px;font-size:13px;}
  body.single-product .vpe-faq-answer{margin:0 12px 13px 47px;padding:13px 14px;border-radius:12px;font-size:13px;line-height:1.55;}
}



/* Phase 3.4: premium review accuracy and helpful UI */
body.single-product .vpe-stars {
    --vpe-star-fill: 100%;
    position: relative !important;
    display: inline-block !important;
    width: max-content !important;
    color: transparent !important;
    font-size: 28px !important;
    line-height: 1 !important;
    letter-spacing: 2px !important;
    font-family: Arial, Helvetica, sans-serif !important;
    vertical-align: middle !important;
}

body.single-product .vpe-stars-bg,
body.single-product .vpe-stars-fg {
    display: block !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}

body.single-product .vpe-stars-bg {
    color: rgba(22, 163, 74, .25) !important;
}

body.single-product .vpe-stars-fg {
    position: absolute !important;
    inset: 0 auto auto 0 !important;
    width: var(--vpe-star-fill, 100%) !important;
    overflow: hidden !important;
    color: var(--vpe-success, #16a34a) !important;
}

body.single-product .vpe-review-card .vpe-stars {
    font-size: 22px !important;
    letter-spacing: 1.6px !important;
    margin: 0 0 11px !important;
}

body.single-product .vpe-verified-by {
    gap: 9px !important;
    margin-top: 2px !important;
}

body.single-product .vpe-verified-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 999px !important;
    background: rgba(22, 163, 74, .12) !important;
    color: var(--vpe-success, #16a34a) !important;
}

body.single-product .vpe-verified-icon svg {
    width: 22px !important;
    height: 22px !important;
    stroke: currentColor !important;
    stroke-width: 1.9 !important;
    overflow: visible !important;
}

body.single-product .vpe-verified-text {
    color: #111827 !important;
    font-weight: 750 !important;
}

body.single-product .vpe-verified-text strong {
    color: var(--vpe-success, #16a34a) !important;
    font-weight: 850 !important;
}

body.single-product .vpe-review-stat-icon {
    position: relative !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    flex: 0 0 54px !important;
}

body.single-product .vpe-review-stat-icon svg {
    display: block !important;
    width: 25px !important;
    height: 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
    margin: 0 !important;
    overflow: visible !important;
    stroke-width: 1.85 !important;
    box-sizing: border-box !important;
}

body.single-product .vpe-review-images {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    margin: 16px 0 0 !important;
}

body.single-product .vpe-review-image {
    display: block !important;
    width: 68px !important;
    height: 68px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #f3f4f6 !important;
    border: 1px solid rgba(17,24,39,.08) !important;
}

body.single-product .vpe-review-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

body.single-product .vpe-helpful-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    min-width: 56px !important;
    min-height: 34px !important;
    padding: 6px 10px !important;
    border: 1px solid rgba(17, 24, 39, .10) !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #111827 !important;
    font: inherit !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease !important;
}

body.single-product .vpe-helpful-button svg {
    width: 18px !important;
    height: 18px !important;
    stroke: currentColor !important;
}

body.single-product .vpe-helpful-button:hover,
body.single-product .vpe-helpful-button.vpe-helpful-liked {
    border-color: rgba(22, 163, 74, .32) !important;
    background: rgba(22, 163, 74, .08) !important;
    color: var(--vpe-success, #16a34a) !important;
}

body.single-product .vpe-helpful-button:active {
    transform: scale(.98) !important;
}

@media screen and (max-width: 768px) {
    body.single-product .vpe-stars { font-size: 25px !important; letter-spacing: 1.4px !important; }
    body.single-product .vpe-review-card .vpe-stars { font-size: 21px !important; }
    body.single-product .vpe-verified-icon { width: 32px !important; height: 32px !important; flex-basis: 32px !important; }
    body.single-product .vpe-review-stat-icon { width: 50px !important; height: 50px !important; flex-basis: 50px !important; }
    body.single-product .vpe-review-image { width: 62px !important; height: 62px !important; }
}



/* Phase 4.7: Pinterest-style masonry review cards + review image lightbox */
body.single-product .vpe-review-cards {
    display: block !important;
    columns: 3 280px !important;
    column-gap: 16px !important;
}

body.single-product .vpe-review-card {
    display: inline-block !important;
    width: 100% !important;
    margin: 0 0 16px !important;
    break-inside: avoid !important;
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
    vertical-align: top !important;
}

body.single-product .vpe-review-image-link {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    cursor: zoom-in !important;
}

body.single-product .vpe-review-lightbox {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 22px !important;
    background: rgba(15, 23, 42, .82) !important;
    backdrop-filter: blur(8px) !important;
}

body.single-product .vpe-review-lightbox.is-open {
    display: flex !important;
}

body.single-product .vpe-review-lightbox img {
    display: block !important;
    max-width: min(96vw, 1180px) !important;
    max-height: 90vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 24px 80px rgba(0,0,0,.35) !important;
}

body.single-product .vpe-review-lightbox-close {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,.25) !important;
    background: rgba(255,255,255,.12) !important;
    color: #fff !important;
    font-size: 28px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
}

@media screen and (max-width: 1024px) {
    body.single-product .vpe-review-cards {
        columns: 2 260px !important;
    }
}

@media screen and (max-width: 768px) {
    body.single-product .vpe-review-cards {
        columns: 1 !important;
    }
    body.single-product .vpe-review-card {
        display: block !important;
        margin-bottom: 14px !important;
    }
}
