/** Shopify CDN: Minification failed

Line 1311:12 Expected identifier but found whitespace
Line 1311:13 Unexpected "700"

**/
/* custom-product-details.css — Capa de diseño premium para la página de producto */

/* --- Grid de 2 Columnas Estilo 50/50 --- */
.pdp-custom-layout {
  display: grid;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px;
  align-items: start;
  max-width: 1340px;
  margin: 24px auto 0;
  width: 95%;
}

.pdp-custom-gallery {
  position: sticky;
  top: 110px;
  min-width: 0;
}

/* Galería: Contenedor con bordes suaves */
.pdp-custom-gallery .product-data__images--swipers {
  position: static;
  top: auto;
}

.pdp-custom-gallery .product-data__swiper {
  height: auto !important;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.pdp-custom-gallery .mySwiper2 .swiper-slide {
  height: auto;
}

.pdp-custom-gallery .product-data__figure {
  aspect-ratio: 1/1;
  height: auto;
  padding: 24px;
  box-sizing: border-box;
}

.pdp-custom-gallery .product-data__figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}

.pdp-custom-gallery .product-data__figure:hover img {
  transform: none;
}

.pdp-custom-gallery .mySwiper2,
.pdp-custom-gallery .mySwiper2 .swiper-wrapper,
.pdp-custom-gallery .mySwiper2 .swiper-slide,
.pdp-custom-gallery .product-data__figure,
.pdp-custom-gallery .product-data__figure img {
  touch-action: pan-y !important;
}

.pdp-custom-gallery .product-data__thumbs {
  margin-top: 12px;
}

.pdp-custom-gallery .product-data__thumbs .swiper-slide {
  border-radius: 8px;
  border: 1.5px solid #eaeaea;
}

.pdp-custom-gallery .product-data__thumbs .swiper-slide-thumb-active {
  border-color: #dc6028;
}

.pdp-custom-gallery .product-data__thumb-figure {
  padding: 6px;
  box-sizing: border-box;
}

/* Riel de Miniaturas Vertical */
.pdp-custom-thumbs-container {
  display: none;
}

@media (min-width: 861px) {
  .pdp-custom-gallery .product-data__images--swipers {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
  }

  .pdp-custom-gallery .product-data__thumbs {
    display: none;
  }

  .pdp-custom-gallery .pdp-custom-thumbs-container {
    display: block;
    order: -1;
    position: relative;
    width: 84px;
    flex: 0 0 84px;
  }

  .pdp-custom-gallery .pdp-custom-thumbs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: #d1d1d1 transparent;
  }

  .pdp-custom-gallery .pdp-custom-thumb-btn {
    position: relative;
    width: 84px;
    height: 84px;
    flex: 0 0 84px;
    border: 1.5px solid #ececec;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    padding: 6px;
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.2s ease;
  }

  .pdp-custom-gallery .pdp-custom-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .pdp-custom-gallery .pdp-custom-thumb-btn:hover {
    border-color: #c0c0c0;
    transform: translateY(-1px);
  }

  .pdp-custom-gallery .pdp-custom-thumb-btn.is-active {
    border-color: #dc6028;
    box-shadow: 0 2px 8px rgba(220, 96, 40, 0.15);
  }

  .pdp-custom-gallery .pdp-custom-thumb-btn__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.3);
  }

  .pdp-custom-gallery .pdp-custom-thumbs-list::-webkit-scrollbar {
    width: 6px;
  }

  .pdp-custom-gallery .pdp-custom-thumbs-list::-webkit-scrollbar-thumb {
    background: #d1d1d1;
    border-radius: 6px;
  }

  .pdp-custom-gallery .pdp-custom-thumbs-list::-webkit-scrollbar-thumb:hover {
    background: #b1b1b1;
  }

  .pdp-custom-thumbs-container::before,
  .pdp-custom-thumbs-container::after {
    content: "";
    position: absolute;
    left: 0;
    right: 6px;
    height: 30px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 2;
  }

  .pdp-custom-thumbs-container::before {
    top: 0;
    background: linear-gradient(#ffffff, rgba(255, 255, 255, 0));
  }

  .pdp-custom-thumbs-container::after {
    bottom: 0;
    background: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
  }

  .pdp-custom-thumbs-container.has-prev::before {
    opacity: 1;
  }

  .pdp-custom-thumbs-container.has-more::after {
    opacity: 1;
  }

  .pdp-custom-thumbs-more {
    position: absolute;
    left: calc(50% - 3px);
    bottom: 8px;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1c1c1c;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }

  .pdp-custom-thumbs-more svg {
    width: 14px;
    height: 14px;
  }

  .pdp-custom-thumbs-container.has-more .pdp-custom-thumbs-more {
    opacity: 1;
    pointer-events: auto;
    animation: pdp-custom-bob 1.5s ease-in-out infinite;
  }

  @keyframes pdp-custom-bob {

    0%,
    100% {
      transform: translateX(-50%) translateY(0);
    }

    50% {
      transform: translateX(-50%) translateY(4px);
    }
  }

  .pdp-custom-gallery .mySwiper2 {
    flex: 1;
    min-width: 0;
    max-width: 520px;
    height: 500px;
  }

  .pdp-custom-gallery .mySwiper2 .swiper-slide {
    height: 100%;
  }

  .pdp-custom-gallery .product-data__figure {
    aspect-ratio: auto;
    height: 500px;
    padding: 24px;
  }
}

.pdp-custom-buybox {
  min-width: 0;
}

.pdp-custom-buybox .product-data__title {
  margin: 0 0 4px;
  line-height: 1.1;
  font-weight: 800;
  color: #1c1c1c;
}

.pdp-custom-buybox .product-data__extra-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pdp-custom-buybox .product-data__extra-info--comments:empty,
.pdp-custom-buybox .jdgm-preview-badge:empty {
  display: none;
  margin: 0;
}

.pdp-custom-buybox .product-data__specs {
  margin: 10px 0 0;
}

.pdp-custom-buybox .pdp-custom-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}

.pdp-custom-buybox .pdp-custom-price-row .product-data__price {
  margin: 0;
  padding: 0;
  border-top: none;
  line-height: 1;
  position: relative;
  display: block;
}

.pdp-custom-buybox .pdp-custom-price-row .product-data__price::before {
  content: attr(data-price);
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  visibility: hidden;
  pointer-events: none;
}

.pdp-custom-buybox .pdp-custom-price-row .product-data__price--sale {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  color: #dc6028;
  font-weight: 800;
  font-size: 24px;
}

.pdp-custom-buybox .pdp-custom-price-row .pdp-custom-finance {
  margin: 0;
}

.pdp-custom-buybox .pdp-custom-variants {
  margin-top: 12px;
}

.pdp-custom-buybox .pdp-custom-option {
  margin: 12px 0 0;
}

.pdp-custom-buybox .pdp-custom-urgency {
  margin: 10px 0 0;
}

.pdp-custom-buybox .pdp-custom-actions {
  margin-top: 14px;
}

.pdp-custom-layout>.product-data__warranty {
  grid-column: 1 / -1;
}

@media (max-width: 860px) {
  .pdp-custom-layout {
    grid-template-columns: 1fr !important;
    gap: 24px;
    width: 92%;
  }

  .pdp-custom-gallery {
    position: static;
  }
}

/* --- Selectores de Variante Visuales --- */
#product-variants {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.pdp-custom-option {
  margin: 16px 0;
}

.pdp-custom-option-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pdp-custom-option-value {
  color: #666;
  font-weight: 400;
  text-transform: none;
}

.pdp-custom-option-choices {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pdp-custom-swatch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ececec;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  transition: all 0.15s ease;
}

.pdp-custom-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.pdp-custom-swatch.is-active {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #dc6028;
  border-color: transparent;
}

.pdp-custom-pill {
  border: 1.5px solid #ececec;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: #ffffff;
  min-width: 46px;
  text-align: center;
  transition: all 0.15s ease;
}

.pdp-custom-pill:hover {
  border-color: #999;
  background: #fdfdfd;
}

.pdp-custom-pill.is-active {
  border-color: #1c1c1c;
  background: #1c1c1c;
  color: #ffffff;
}

.pdp-custom-swatch:disabled,
.pdp-custom-pill:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pdp-custom-swatch.is-unavailable,
.pdp-custom-pill.is-unavailable {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.pdp-custom-pill.is-unavailable {
  text-decoration: line-through;
}

.pdp-custom-swatch.is-unavailable {
  position: relative;
}

.pdp-custom-swatch.is-unavailable::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(to top right, transparent 46%, #b23b3b 46%, #b23b3b 54%, transparent 54%);
}


/* --- Mensaje de Urgencia --- */
.pdp-custom-urgency {
  margin: 12px 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: #dc6028;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- Acciones de Compra --- */
.pdp-custom-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 14px 0 6px;
}

.pdp-custom-actions-row1 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pdp-custom-actions-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pdp-custom-qty-selector {
  margin: 0;
}

.pdp-custom-qty-selector .product-data__qty--controls {
  display: flex;
  align-items: center;
  height: 100%;
  border: 1.5px solid #dcdcdc;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.pdp-custom-qty-selector .product-data__qty--button {
  width: 42px;
  height: 100%;
  min-height: 50px;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #1c1c1c;
  transition: background 0.15s;
}

.pdp-custom-qty-selector .product-data__qty--button:hover {
  background: #f5f5f5;
}

.pdp-custom-qty-selector .product-data__qty--number {
  width: 44px;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  background: transparent;
  -moz-appearance: textfield;
}

.pdp-custom-qty-selector .product-data__qty--number::-webkit-outer-spin-button,
.pdp-custom-qty-selector .product-data__qty--number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pdp-custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1;
}

.pdp-custom-button i,
.pdp-custom-button svg {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.pdp-custom-button i:empty {
  display: none;
}

.pdp-custom-button-add {
  flex: 1;
  background: #dc6028;
  color: #ffffff;
}

.pdp-custom-button-add:hover {
  background: #c54f1b;
  box-shadow: 0 4px 12px rgba(220, 96, 40, 0.2);
}

.pdp-custom-button-buy {
  background: #ffffff;
  color: #1c1c1c;
  border-color: #1c1c1c;
}

.pdp-custom-button-buy:hover {
  background: #1c1c1c;
  color: #ffffff;
}

.pdp-custom-button-buy:disabled {
  opacity: 0.5;
  cursor: default;
}

.pdp-custom-button.is-unavailable,
.pdp-custom-button[disabled] {
  background: #d8d8d8;
  color: #888888;
  border-color: transparent;
  cursor: not-allowed;
  opacity: 1;
  pointer-events: none;
}

.pdp-custom-button-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.pdp-custom-button-whatsapp:hover {
  background: #20ba59;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.pdp-custom-util,
.pdp-custom-util .share__button-content {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: #666;
  padding: 0;
  text-decoration: none;
  transition: color 0.15s;
}

.pdp-custom-util:hover {
  color: #1c1c1c;
}

.pdp-custom-util svg,
.pdp-custom-util i {
  width: 18px;
  height: 18px;
}

.pdp-custom-util-whatsapp {
  margin-left: auto;
  color: #1fa855;
  font-weight: 700;
}

.pdp-custom-util-whatsapp svg {
  color: #1fa855;
}

.pdp-custom-actions-row1 .share {
  position: relative;
}

.pdp-custom-actions-row1 .share__tooltip-content {
  position: absolute;
  bottom: 120%;
  left: 0;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 5;
}

.pdp-custom-actions-row1 .share:hover .share__tooltip-content {
  display: block;
}

.pdp-custom-actions-row1 .share__social-icons {
  display: flex;
  gap: 10px;
}

.pdp-custom-actions-row1 .share__social-icons a,
.pdp-custom-actions-row1 .share__social-icons button {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
}

/* --- Sección de Entrega y Recogida --- */
.pdp-custom-shipping-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  padding: 16px;
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #fafafa;
}

.pdp-custom-shipping-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdp-custom-shipping-icon {
  font-size: 20px;
  line-height: 1;
}

.pdp-custom-shipping-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.pdp-custom-shipping-txt b {
  font-size: 14px;
  color: #1c1c1c;
}

.pdp-custom-shipping-txt span {
  font-size: 12.5px;
  color: #666;
}

/* --- Compra Segura --- */
.pdp-custom-trust-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.pdp-custom-trust-label {
  font-size: 13px;
  color: #555;
  font-weight: 600;
}

.pdp-custom-trust-logos {
  display: none;
  align-items: center;
  gap: 8px;
}

.pdp-custom-trust-badges.pdp-custom-trust-fallback .pdp-custom-trust-logos {
  display: inline-flex;
}

.pdp-custom-trust-logo {
  height: 20px;
  width: auto;
  display: block;
}

.pdp-custom-trust-bold {
  flex: 0 0 100%;
  width: 100%;
  margin-top: 6px;
  min-height: 56px;
}

.pdp-custom-trust-badges.pdp-custom-trust-fallback .pdp-custom-trust-bold {
  min-height: 0;
}

/* --- Características (Diseño Limpio) --- */
.pdp-custom-specs-wrapper {
  margin: 24px 0 10px;
}

.pdp-custom-specs-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1c1c1c;
}

.pdp-custom-specs-body {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.pdp-custom-specs-body table {
  width: 100%;
  border-collapse: collapse;
}

.pdp-custom-specs-body td,
.pdp-custom-specs-body th {
  padding: 8px 10px;
  border-bottom: 1px solid #eaeaea;
  text-align: left;
}

/* --- Acordeones de Información Custom --- */
.pdp-custom-accordion {
  margin: 12px 0 6px;
  border-top: 1px solid #eaeaea;
}

.pdp-custom-accordion-item {
  border-bottom: 1px solid #eaeaea;
}

.pdp-custom-accordion-head {
  list-style: none;
  cursor: pointer;
  padding: 16px 4px;
  font-size: 15px;
  font-weight: 700;
  color: #1c1c1c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.15s;
}

.pdp-custom-accordion-head:hover {
  color: #dc6028;
}

.pdp-custom-accordion-head::-webkit-details-marker {
  display: none;
}

/* Flecha rotativa en CSS */
.pdp-custom-accordion-head::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #888888;
  border-bottom: 2px solid #888888;
  transform: rotate(45deg);
  transition: transform 0.25s ease-in-out, border-color 0.15s;
}

.pdp-custom-accordion-head:hover::after {
  border-color: #dc6028;
}

.pdp-custom-accordion-item[open] .pdp-custom-accordion-head::after {
  transform: rotate(-135deg);
}

.pdp-custom-accordion-body {
  padding: 0 4px 16px;
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

.pdp-custom-accordion-body p {
  margin: 0 0 10px;
}

.pdp-custom-accordion-body p:last-child {
  margin-bottom: 0;
}

/* --- Opiniones / Reviews --- */
.pdp-custom-reviews {
  margin-top: 40px;
}

.pdp-custom-reviews-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}

/* --- Barra Sticky de Compra --- */
.pdp-custom-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #e2e2e2;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(110%);
  z-index: 60;
  padding-bottom: env(safe-area-inset-bottom);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-custom-sticky-bar.is-visible {
  transform: translateY(0);
}

.pdp-custom-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.pdp-custom-sticky-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.pdp-custom-sticky-img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid #eaeaea;
}

.pdp-custom-sticky-texts {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pdp-custom-sticky-title {
  font-size: 15px;
  font-weight: 700;
  color: #1c1c1c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 34vw;
}

.pdp-custom-sticky-price {
  font-size: 15px;
  font-weight: 800;
  color: #dc6028;
}

.pdp-custom-sticky-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdp-custom-sticky-variant {
  position: relative;
}

.pdp-custom-sticky-variant select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 46px;
  border: 1.5px solid #d9d9d9;
  border-radius: 999px;
  padding: 0 40px 0 18px;
  font-size: 14px;
  font-weight: 700;
  color: #1c1c1c;
  background: #ffffff;
  cursor: pointer;
  max-width: 200px;
  transition: border-color 0.15s;
}

.pdp-custom-sticky-variant select:hover {
  border-color: #999;
}

.pdp-custom-sticky-variant::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #1c1c1c;
  border-bottom: 2px solid #1c1c1c;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.pdp-custom-sticky-qty {
  display: inline-flex;
  align-items: center;
  height: 46px;
  border: 1.5px solid #e2e2e2;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #ffffff;
}

.pdp-custom-sticky-qty-btn {
  width: 36px;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: #1c1c1c;
  transition: background 0.15s;
}

.pdp-custom-sticky-qty-btn:hover {
  background: #f5f5f5;
}

.pdp-custom-sticky-qty-num {
  min-width: 32px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #1c1c1c;
}

.pdp-custom-sticky-btn {
  height: 46px;
  min-width: 190px;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 860px) {
  .pdp-custom-sticky-inner {
    gap: 12px;
  }

  .pdp-custom-sticky-title {
    max-width: 24vw;
  }

  .pdp-custom-sticky-variant select {
    max-width: 150px;
  }

  .pdp-custom-sticky-btn {
    min-width: 150px;
  }
}

@media (max-width: 520px) {
  .pdp-custom-actions-row2 {
    grid-template-columns: 1fr;
  }

  .pdp-custom-actions-row1 {
    gap: 12px;
    flex-wrap: wrap;
  }

  .pdp-custom-trust-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Sticky móvil */
  .pdp-custom-sticky-info,
  .pdp-custom-sticky-qty {
    display: none;
  }

  .pdp-custom-sticky-inner {
    gap: 8px;
    padding: 8px 0;
  }

  .pdp-custom-sticky-actions {
    width: 100%;
    gap: 8px;
  }

  .pdp-custom-sticky-variant {
    flex: 0 0 auto;
  }

  .pdp-custom-sticky-variant select {
    max-width: 44vw;
    padding: 0 34px 0 12px;
    font-size: 13px;
  }

  .pdp-custom-sticky-btn {
    flex: 1;
    min-width: 0;
    padding: 0 10px;
  }

  .pdp-custom-sticky-btn span {
    font-size: 14px;
  }
}

.pdp-finance-widget {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-finance-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid #f1f5f9;
  background: #fafafa;
  transition: all 0.2s ease-in-out;
  flex: 1 1 calc(50% - 4px);
  min-width: 200px;
}

.pdp-finance-pill:hover {
  border-color: #e2e8f0;
  background: #f8fafc;
}

.pdp-finance-pill__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.pdp-finance-pill__logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.pdp-finance-pill__text {
  flex: 1;
  min-width: 0;
  font-size: 11px;
  line-height: 1.3;
  color: #64748b !important;
}

.pdp-finance-pill__text strong {
  font-weight: 600;
  color: #334155 !important;
}

.pdp-finance-pill__link {
  flex-shrink: 0;
  font-weight: 600;
  text-decoration: none;
  font-size: 10.5px;
  color: #3b82f6 !important;
}

.pdp-finance-pill__link:hover {
  text-decoration: underline;
}

/* Addi: borde de acento amarillo discreto */
.pdp-finance-pill--addi {
  border-left: 2px solid #fde68a;
}

/* Sistecrédito: borde de acento azul discreto */
.pdp-finance-pill--sistecredito {
  border-left: 2px solid #38bdf8;
}

@media (max-width: 480px) {
  .pdp-finance-pill {
    padding: 6px 10px;
    flex: 1 1 100%;
  }
}

/* --- Relocated styles from product-data.liquid --- */
.product-notice {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  margin-top: 16px;
}

.product-notice__text {
  color: #333;
  margin-bottom: 15px;
  font-size: 14px;
}

.product-notice__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.product-notice__button--whatsapp {
  background-color: #25D366;
  color: white;
}

.product-notice__button--whatsapp svg {
  width: 20px;
}

.product-notice__button--whatsapp:visited {
  color: white;
}

.product-notice__button--whatsapp:hover {
  background-color: #128C7E;
}

.product-data__video-wrapper video,
.product-data__video-wrapper {
  height: 100%;
}

.bf-circle-label {
  position: absolute;
  top: -50px;
  right: 20px;
  z-index: 20;
  width: 90px;
  height: 90px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 2px solid #ffffff;
  line-height: 1;
  transform: rotate(15deg);
}

.bf-circle-text {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.bf-circle-amount {
  font-size: 24px;
  font-weight: 900;
  color: #ff3b30;
}

.product-data__price--compare {
  display: none;
}

font-weight: 700;
margin-bottom: 2px;
letter-spacing: 0.5px;
}

.bf-circle-amount {
  font-size: 24px;
  font-weight: 900;
  color: #ff3b30;
}

.product-data__price--compare {
  display: none;
}