/* =========================================================
   1. BASE GENERAL
========================================================= */

body {
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
}

/* =========================================================
   2. ENCABEZADO / BREADCRUMB
========================================================= */

.page-header-lite {
  background: #f2f2f2;
  padding: 28px 0;
}

.page-header-lite h1 {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.breadcrumb-lite {
  font-size: 0.92rem;
  margin-bottom: 15px;
  color: #555;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

.breadcrumb-lite a {
  color: #005c9c;
  text-decoration: none;
}

.breadcrumb-lite a:hover {
  text-decoration: underline;
}

.breadcrumb-lite-icon {
  width: 14px;
  height: 14px;

  fill: currentColor;

  flex-shrink: 0;

  position: relative;
  top: -1px;
}

/* =========================================================
   2.5 H1 (IMPORTANTE SEO)
========================================================= */

.product-title-main {
  font-size: 1.1rem;
  font-weight: 500;
  color: #777;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* =========================================================
   3. SECCIÓN PRINCIPAL DEL PRODUCTO
========================================================= */

.product-section {
  background: #f2f2f2;
  padding: 2rem 0 4rem;
}

/* =========================================================
   4. GALERÍA DEL PRODUCTO
========================================================= */

.gallery-thumb,
.gallery-main {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-thumb {
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.2s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: #005c9c;
  box-shadow: 0 0 0 2px rgba(0, 92, 156, 0.12);
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  display: block;
  padding: 8px;
  background: #fff;
}

.gallery-main img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  display: block;
  padding: 1rem;
  background: #fff;
}

.under-main-note {
  margin-top: 1rem;
  background: #eff8f0;
  border: 1px solid #cde6cf;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #256a35;
}

/*
.under-main-note i {
  font-size: 2rem;
}
*/

.under-main-note-icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
  flex-shrink: 0;
}

.under-main-note strong {
  display: block;
  font-size: 1rem;
}

.under-main-note span {
  display: block;
  color: #4b6350;
  font-size: 0.92rem;
}

/* =========================================================
   5. INFORMACIÓN DEL PRODUCTO
========================================================= */

.product-meta {
  background: transparent;
  padding: 0.25rem 0;
}

.product-category {
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
/*
.product-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
*/
.product-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2d3d;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #005c9c;
  margin-top: 0.45rem;
  margin-bottom: 1rem;
}

.product-separator {
  width: 72px;
  height: 3px;
  background: #7f7f7f;
  margin: 0 0 1rem 0;
}

.product-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.product-short-copy {
  color: #4f4f4f;
  margin-bottom: 0;
}

/* =========================================================
   6. TÍTULOS DE SECCIÓN
========================================================= */

.section-title {
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  width: 56px;
  height: 3px;
  background: #005c9c;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 2px;
}

/* =========================================================
   7. CAJA DE COMPRA / COTIZACIÓN
========================================================= */

.product-buy-box {
  margin-top: 1.75rem;
}

.buy-box-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 1.25rem;
}

.buy-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.55rem;
}

.buy-select {
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid #dcdcdc;
  font-size: 1rem;
  box-shadow: none;
}

.buy-select:focus,
.qty-input:focus {
  border-color: #005c9c;
  box-shadow: 0 0 0 0.2rem rgba(0, 92, 156, 0.12);
}

.quantity-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.qty-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #dcdcdc;
  background: #fff;
  border-radius: 14px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #005c9c;
  line-height: 1;
  transition: 0.2s ease;
}

.qty-btn:hover {
  border-color: #005c9c;
  background: #f4f9fc;
}

.qty-input {
  height: 50px;
  max-width: 110px;
  text-align: center;
  border-radius: 14px;
  border: 1px solid #dcdcdc;
  font-weight: 700;
  box-shadow: none;
}

/* =========================================================
   8. BOTONES CTA
========================================================= */

.btn-whatsapp-cta {
  min-height: 74px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #16c75a, #09b44c);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(22, 199, 90, 0.22);
  transition: 0.25s ease;
  padding: 1rem 1.2rem;
  text-align: left;
}

.btn-whatsapp-cta i {
  font-size: 2.1rem;
  flex-shrink: 0;
}
/*
.btn-whatsapp-cta svg {
  width: 2.1rem;
  height: 2.1rem;
  fill: currentColor;
  flex-shrink: 0;
}
*/
.btn-whatsapp-cta small {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.95;
}

.btn-whatsapp-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(22, 199, 90, 0.28);
}

.right-block-whatsapp-icon {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
  flex-shrink: 0;
  display: block;
  scale: 1.1;
}

.btn-cart-cta {
  min-height: 74px;
  border-radius: 18px;
  border: 2px solid #005c9c;
  background: #fff;
  color: #005c9c;
  font-weight: 700;
  font-size: 1rem;
  transition: 0.25s ease;
  padding: 1rem 1.2rem;
  text-align: left;
}

.btn-cart-cta i {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.btn-cart-cta small {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2f5f96;
}

.btn-cart-cta:hover {
  background: #005c9c;
  color: #fff;
}

.btn-cart-cta:hover small {
  color: #eaf4ff;
}

/* =========================================================
   9. CAJAS DE APOYO / BENEFICIOS
========================================================= */

.buy-helper-box {
  background: #f4faf5;
  border: 1px solid #cfe8d4;
  border-radius: 18px;
  padding: 1rem;
  color: #254b2f;
}

.buy-helper-box span {
  color: #218043;
}

.buy-helper-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #dff3e3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
.buy-helper-icon i {
  font-size: 1.5rem;
  color: #168f46;
}
*/

.buy-helper-box-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #168f46;
  flex-shrink: 0;
}

.offer-box {
  margin-top: 1rem;
  background: #edf7ef;
  border: 1px solid #cce4d0;
  border-radius: 14px;
  padding: 1rem;
  color: #234;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.offer-box-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: #168f46;
  margin-top: 2px;
  flex-shrink: 0;
}

/* =========================================================
   10. CARACTERÍSTICAS DEL PRODUCTO
========================================================= */

.feature-grid {
  margin-top: 0.25rem;
  height: 100%;
}

.feature-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 1rem;
  height: 100%;
  text-align: center;
}

.feature-card img {
  max-width: 100%;
  height: 100px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.feature-card span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
}

.feature-card-horizontal {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-align: left;
}

.feature-card-horizontal img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 0;
  flex-shrink: 0;
}

.feature-card-horizontal strong {
  display: block;
  font-size: 1rem;
  color: #005c9c;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.feature-card-horizontal span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
}

/* =========================================================
   11. TRUST STRIP
========================================================= */

.trust-strip-wrap {
  margin: 0;
}

.trust-strip {
  margin-top: 1.75rem;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.trust-item i {
  font-size: 1.5rem;
  color: #005c9c;
  flex-shrink: 0;
  margin-bottom: 6px;
}

.trust-item strong {
  display: block;
  font-size: 0.98rem;
  color: #005c9c;
}

.trust-item span {
  display: block;
  font-size: 0.92rem;
  color: #555;
}

/* =========================================================
   12. MINI CARDS
========================================================= */

.mini-stack {
  margin-top: 0.9rem;
  display: grid;
  gap: 10px;
}

.mini-card {
  background: #f8fafc;
  border: 1px solid #e6ebf2;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  display: flex;
  gap: 12px;
  align-items: center;
}
/*
.mini-card i {
  font-size: 1.5rem;
  color: #1c5db2;
  min-width: 28px;
}
*/
.mini-card strong {
  display: block;
  font-size: 0.98rem;
  color: #1f2937;
}

.mini-card span {
  display: block;
  font-size: 0.9rem;
  color: #555;
}

.mini-card-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #1c5db2;
  min-width: 28px;
  flex-shrink: 0;
}

/* =========================================================
   13. IDEAL PARA
========================================================= */

.ideal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ideal-card {
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  background: #fff;
}

.ideal-card i,
.ideal-card svg {
  width: 2rem;
  height: 2rem;
  color: #205fb4;
  display: block;
  margin: 0 auto 0.6rem;
}

.ideal-card i {
  font-size: 2rem;
}

.ideal-card span {
  display: block;
  font-weight: 700;
  color: #2a3340;
  font-size: 0.98rem;
  line-height: 1.35;
}

/* =========================================================
   14. CTA FINAL
========================================================= */

.closing-cta-box {
  background: #f7fcf8;
  border: 2px solid #9fd0a7;
  border-radius: 20px;
  padding: 1.4rem 1.5rem;
  width: 100%;
}

.closing-cta-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1f4f39;
  margin-bottom: 0.5rem;
}

.closing-cta-content p {
  color: #3f4b57;
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.closing-cta-btn-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.closing-cta-foot-icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

.closing-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: linear-gradient(180deg, #17bb5e 0%, #0ea950 100%);
  color: #fff;

  border-radius: 14px;
  padding: 0.95rem 1.4rem;

  font-weight: 800;
  font-size: 1.05rem;

  text-decoration: none;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;

  box-shadow: 0 10px 24px rgba(14, 169, 80, 0.22);
}

.closing-cta-btn:hover {
  color: #fff;
  background: linear-gradient(180deg, #18c965 0%, #0ca64d 100%);

  transform: translateY(-2px);

  box-shadow: 0 14px 28px rgba(14, 169, 80, 0.28);
}

.closing-cta-foot {
  margin-top: 0.8rem;
  opacity: 0.85;
  color: #4a5968;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.closing-cta-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.closing-cta-image img {
  width: 100%;
  max-width: 180px;
  height: auto;

  object-fit: contain;

  display: block;
  margin: 0 auto;

  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
}

@media (max-width: 991px) {
  .closing-cta-content h3 {
    font-size: 1.5rem;
  }

  .closing-cta-content p {
    font-size: 1rem;
  }

  .closing-cta-image img {
    max-width: 140px;
  }
}

/* =========================================================
   15. PRODUCTOS SIMILARES
========================================================= */

.similar-section {
  padding: 2rem 0 4rem;
  background: #fff;
}

.similar-title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.similar-carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.similar-viewport {
  overflow: hidden;
  width: 100%;
}

.similar-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.similar-item {
  flex: 0 0 calc((100% - 60px) / 4);
  display: block;
  text-decoration: none;
}

.similar-item img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.similar-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
  flex-shrink: 0;
  color: #555;
}

.similar-arrow:hover {
  border-color: #005c9c;
  color: #005c9c;
}

.similar-arrow-prev-icon,
.similar-arrow-next-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.similar-arrow-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* =========================================================
   16. CTA STICKY MOBILE
========================================================= */

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 1040;

  background: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-top: 1px solid #e9e9e9;

  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));

  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

.mobile-sticky-cta-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

/* =========================================================
   17. RESPONSIVE
========================================================= */

@media (min-width: 768px) {
  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1199.98px) {
  .ideal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .product-title {
    font-size: 1.6rem;
  }

  .gallery-main img {
    max-height: 420px;
  }

  .similar-item {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .btn-whatsapp-cta,
  .btn-cart-cta {
    min-height: 68px;
  }

  .closing-cta-box {
    padding: 1.25rem;
  }

  .closing-cta-content {
    text-align: center;
  }

  .closing-cta-content h3 {
    font-size: 1.5rem;
  }

  .closing-cta-foot {
    justify-content: center;
  }

  .closing-cta-image {
    margin-top: 1rem;
  }

  .closing-cta-image img {
    max-width: 160px;
  }

  .section-title {
    font-size: 1.25rem;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 767.98px) {
  .ideal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .similar-item {
    flex: 0 0 100%;
  }

  .buy-box-card {
    padding: 1rem;
  }

  .feature-card-horizontal {
    gap: 0.7rem;
  }

  .feature-card-horizontal img {
    width: 46px;
    height: 46px;
  }

  .product-section {
    padding-bottom: 6rem;
  }

  .section-title {
    font-size: 1.1rem;
    line-height: 1.3;
    padding-right: 10px;
  }

  .section-title::after {
    width: 42px;
    height: 2px;
  }
}

.product-seo-section {
  background: #fff;
  padding: 52px 0 60px;
}

.product-seo-box {
  max-width: 980px;
  margin: 0 auto;
}

.product-seo-box h2 {
  color: #1f4f91;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.product-seo-box h2:not(:first-child) {
  margin-top: 36px;
}

.product-seo-box p {
  line-height: 1.75;
  margin-bottom: 16px;
}

.product-seo-box a {
  color: #1f4f91;
  font-weight: 600;
}

.product-seo-box .faq-item {
  margin-bottom: 24px;
}

.product-seo-box .faq-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-subtitle {
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}
