/* PRODUCT PAGE -------------------- */

.product-container {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.product-container > * {
  width: 100%;
}
.product-info {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.product-info > * {
  margin-bottom: 16px;
}
.shipping-note {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}
/* LEFT: GALLERY -------------------- */

.product-gallery {
  width: 100%;
  background: #f3f4f6;
  padding: 20px;
  border-radius: 16px;
}

.woocommerce-product-gallery {
  position: relative;
  width: 100%;
  margin: 0;
  max-width: 550px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fb;
}

/* IMPORTANTE: Flexslider fix */
.flex-viewport {
  width: 100% !important;
}

/* wrapper */
.woocommerce-product-gallery__wrapper {
  width: 100%;
}

/* IMAGEN PRINCIPAL (FIX REAL) */
.woocommerce-product-gallery__image {
  width: 100%;
}

.woocommerce-product-gallery__image img {
  width: 100%;
  height: auto; /* 🔥 clave: NO tocar esto */
  display: block;
  object-fit: contain; /* evita cortes */
}

/* THUMBNAILS -------------------- */

.flex-control-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding: 0;
}

.flex-control-thumbs li {
  list-style: none;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.flex-control-thumbs li:hover,
.flex-control-thumbs .flex-active {
  opacity: 1;
}

.flex-control-thumbs img {
  width: 70px;
  height: auto; /* 🔥 clave: evita deformación */
  display: block;
}

.flex-control-thumbs .flex-active img {
  outline: 2px solid #000;
}

/* RIGHT: INFO -------------------- */

.product-short {
  font-size: 16px;
  margin-bottom: 24px;
  color: #666;
  margin-top: 0.5rem;
}
.product-description {
  margin-top: 0px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.product-info {
  max-width: 480px;
}
.product-price {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0 5px;
}
.price del {
  opacity: 0.5;
  font-size: 18px;
}
.product-add {
  margin-bottom: 20px;
}

.product-add button {
  width: 100%;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 16px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-add button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
/* BENEFITS */

.product-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.product-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 15px;
  color: #374151;
}

/* DETAILS -------------------- */

.product-details {
  padding: 2rem;
  margin-top: 2rem;
  background: #f8f9fb;
  position: relative;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* UPSELL -------------------- */

.product-upsell {
  /*padding: 60px 20px;*/
  background-image: url(https://surftravelgear.com/wp-content/uploads/2026/03/wavesTwo.png);
}

/* RESPONSIVE -------------------- */

@media (max-width: 768px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .flex-control-thumbs img {
    width: 60px;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }
  .woocommerce div.product form.cart .button {
    width: 100%;
    margin-left: 0rem;
  }
}

/* VARIATIONS TABLE CLEAN */

.variations {
  margin: 0px 0;
  width: 100%;
}

.variations .label {
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 0px;
  display: block;
}

.variations select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* hover + focus */
.variations select:hover {
  border-color: #999;
}

.variations select:focus {
  border-color: #000;
  outline: none;
}

/* reset link */
.reset_variations {
  visibility: visible !important;
  display: inline-block;
  font-size: 12px;
  margin-top: 8px;
  color: #666;
  text-decoration: underline;
}

/* ADD TO CART BUTTON PRO */

.single_add_to_cart_button {
  width: 100%;
  padding: 16px;
  border-radius: 12px;

  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;

  font-size: 16px;
  font-weight: 600;

  border: none;
  transition: all 0.25s ease;
}

/* hover */
.single_add_to_cart_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

/* hover */
.single_add_to_cart_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

/* click */
.single_add_to_cart_button:active {
  transform: translateY(0);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* disabled (cuando no eligió variación) */
.single_add_to_cart_button.disabled,
.single_add_to_cart_button:disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* ============================= */
/* VARIATIONS MODERN UI FIX */
/* ============================= */

/* tabla base */
.product-info .variations {
  width: 100%;
  margin: 25px 0;
  border: none;
}

.product-info .variations tr {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

/* label */
.product-info .variations .label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  text-align: left;
}

/* container */
.product-info .variations .value {
  width: 100%;
}

/* SELECT MODERNO */
.product-info .variations select {
  width: 100% !important;
  padding: 14px !important;
  border-radius: 10px !important;
  border: 1px solid #ddd !important;
  background: #fff !important;
  font-size: 14px !important;
  cursor: pointer;
  appearance: none;
  transition: all 0.2s ease;
}

/* hover */
.product-info .variations select:hover {
  border-color: #999 !important;
}

/* focus */
.product-info .variations select:focus {
  border-color: #000 !important;
  outline: none;
}

/* remove weird wc spacing */
.product-info .variations td,
.product-info .variations th {
  padding: 0 !important;
  border: none !important;
}

/* reset link */
.product-info .reset_variations {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
  display: inline-block;
}

/* ============================= */
/* QUANTITY INPUT FIX */
/* ============================= */

.product-info .quantity input.qty {
  width: 70px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 14px;
}
.quantity {
  margin-bottom: 1rem !important;
}

/* ============================= */
/* BUTTON (refuerzo visual) */
/* ============================= */

.product-info .single_add_to_cart_button {
  width: 100%;
  margin-top: 15px;
}
/* OCULTAR SELECT REAL (FORZADO) */
.product-info .variations select {
  display: none !important;
}

/* opcional: limpiar espacio raro */
.product-info .variations .value {
  display: flex;
  flex-direction: column;
}

/* SWATCHES PRO */
/* SWATCHES PRO LEVEL */

.color-swatches {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.color-swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  position: relative;
}

/* hover */
.color-swatch:hover {
  transform: scale(1.12);
}

/* activo */
.color-swatch.active {
  border-color: #000;
  transform: scale(1.15);
}

/* disabled */
.color-swatch.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.color-swatch.disabled::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 2px;
  background: #000;
  transform: translate(-50%, -50%) rotate(45deg);
}

.woocommerce-product-gallery .onsale {
  position: absolute;
  top: 20px;
  left: 20px;

  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: #fff;

  font-size: 11px;
  font-weight: 500;
  padding: 6px 12px;

  border-radius: 20px;
  z-index: 20;
}
.woocommerce-product-gallery__trigger img {
  display: none;
}
.woocommerce-product-gallery__trigger {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 40px;
  height: 40px;

  background: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 10;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;

  transition: all 0.2s ease;
}

/* hover */
.woocommerce-product-gallery__trigger:hover {
  transform: scale(1.1);
}

/* icono custom */
.woocommerce-product-gallery__trigger::before {
  content: "⌕"; /* limpio y minimal */
  font-size: 18px;
  color: #111;
  display: none;
}

/* CONTENEDOR */
.woocommerce-product-gallery__image {
  overflow: hidden;
  cursor: zoom-in;
}

/* IMAGEN */
.woocommerce-product-gallery__image img {
  transition: transform 0.4s ease;
}

/* HOVER */
.woocommerce-product-gallery__image:hover img {
  transform: scale(1.4);
}
.woocommerce-product-gallery__image:hover {
  cursor: zoom-in;
}

.onsale {
  display: none !important;
}

.custom-sale-badge {
  position: absolute;
  top: 16px;
  left: 16px;

  background: #111;
  color: #fff;

  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;

  border-radius: 6px;
  z-index: 50;

  letter-spacing: 0.5px;
  text-transform: uppercase;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.woocommerce div.product form.cart .button {
  border-radius: 2rem;
  width: 60%;
  margin-left: 1rem;
}

/* PRECIO BLOQUE PRO */

.product-price .price {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* precio actual */
.product-price ins {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a !important;
}

/* precio anterior */
.product-price del {
  font-size: 18px;
  color: #9ca3af !important;
}

/* símbolo moneda */
.product-price .woocommerce-Price-currencySymbol {
  font-weight: 500;
}
.product-info h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.product-info h1 .product-subtitle {
  font-size: 16px !important;
  color: #6b7280 !important;
  margin-top: 8px !important;
}

.product-proof {
  position: absolute;
  left: 88px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #111;
  z-index: 20;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  top: 12px;
  display: block;
  width: fit-content;
}
.product-proof:hover {
  box-shadow: 0 7px 24px rgba(0, 0, 0, 0.2);
}

/* SECTION */
.product-details {
  background: #f8fafc;
  text-align: center;
}

.product-details h2 {
  font-size: 32px;
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* GRID */
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ITEM */
.detail-item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  transition: all 0.25s ease;
  border: 1px solid #eee;
}

.detail-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */
.detail-item img {
  width: 110px;
  height: auto;
  margin-bottom: 20px;
}

/* TITLE */
.detail-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* TEXT */
.detail-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .details-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .detail-item {
    padding: 30px 20px;
  }

  .detail-item img {
    width: 90px;
  }
}
.detail-item {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}
.product-details h2 {
  background: linear-gradient(to right, #0f172a, #334155);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-short {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280; /* gris moderno */
  margin: 12px 0 18px;
  max-width: 420px;
}

/* Si viene con <p> desde WP */
.product-short p {
  margin: 0;
}

/* Variante más premium (tipo tagline) */
.product-short strong {
  color: #111827;
  font-weight: 600;
}

.buy-reasons {
  margin-top: 14px;
  font-size: 13px;
  color: #6b7280;
}

.buy-reasons p {
  margin: 4px 0;
}

.prodSpecs {
  list-style: none;
  padding-left: 0;
}
.product-story {
  position: relative;
  height: 520px;
  overflow: hidden;
}

/* IMAGEN FULL BLEED */
.story-image {
  position: absolute;
  inset: 0;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY OSCURO PRO */
.product-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.2)
  );
}

/* TEXTO */
.story-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

/* TITULO */
.product-story h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 700;
}

/* TEXTO */
.product-story p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
}

@media (max-width: 768px) {
  .product-story {
    height: auto;
  }

  .story-image img {
    height: 400px;
  }

  .story-content {
    padding: 40px 20px;
  }

  .product-story h2 {
    font-size: 28px;
  }

  .product-story p {
    font-size: 15px;
  }
}
/* SECTION */
.parallax-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* BACKGROUND PARALLAX */
.parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url("/wp-content/uploads/2026/03/surf-backpack-real-use.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.1);
}

/* OVERLAY PRO */
.parallax-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.2)
  );
}

/* CONTENT */
.story-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}

/* TEXT */
.story-content h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 12px;
}

.story-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .parallax-bg {
    background-attachment: scroll;
  }

  .parallax-section {
    height: auto;
    padding: 80px 20px;
  }

  .story-content h2 {
    font-size: 28px;
  }

  .story-content p {
    font-size: 15px;
  }
}

.story-btn {
  margin-top: 1.5rem;
  width: fit-content;
}

/* === Upsell Section === */
.product-upsell {
  padding: 2rem;
  /*background: linear-gradient(to bottom, #f5f7fa, #ffffff);*/
}

.product-upsell .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.upsell-header {
  text-align: center;
  margin-bottom: 15px;
}

.upsell-header h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.upsell-header p {
  font-size: 1.05rem;
  color: #6b7c93;
}

/* Grid */
.upsell-grid ul.products {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

/* Product Card */
.upsell-grid .product {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Hover effect (premium feel) */
.upsell-grid .product:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

/* Optional badge (Woo sale badge styling improvement) */
.upsell-grid .onsale {
  background: #00a8a8 !important;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Image */
.upsell-grid .product img {
  border-radius: 14px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.upsell-grid .product:hover img {
  transform: scale(1.05);
}

/* Title */
.upsell-grid .woocommerce-loop-product__title {
  font-size: 1rem;
  color: #0a2540;
  font-weight: 500;
  margin-bottom: 6px;
}

/* Price */
.upsell-grid .price {
  color: #00a8a8;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Button */
.upsell-grid .button {
  background: #0a2540;
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.85rem;
  transition: all 0.25s ease;
  border: none;
}

.upsell-grid .button:hover {
  background: #00a8a8;
  color: #fff;
}

/* CTA */
.upsell-cta {
  text-align: center;
  margin-top: 0px;
}

/* BOTÓN PREMIUM */
.btn-upsell {
  position: relative;
  display: inline-block;

  padding: 14px 30px;
  border-radius: 999px;

  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;

  text-decoration: none;
  overflow: hidden;

  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  animation: subtlePulse 3s infinite;
}

/* HOVER */
.btn-upsell:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* CLICK */
.btn-upsell:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

/* LIGHT SWEEP EFFECT (muy pro) */
.btn-upsell::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );

  transition: all 0.6s ease;
}

.btn-upsell:hover::before {
  left: 100%;
}

@keyframes subtlePulse {
  0% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  50% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  }
  100% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
}

/* SUBTLE GLOW (brand feel) */
.btn-upsell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0px rgba(99, 102, 241, 0);
  transition: all 0.3s ease;
}

.btn-upsell:hover::after {
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.25);
}

/* Responsive */
@media (min-width: 640px) {
  .upsell-grid ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .upsell-header h2 {
    font-size: 2.6rem;
  }

  .upsell-grid ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* SECTION */
.product-cta {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* LIGHT GLOW EFFECT */
.product-cta::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
  top: -100px;
  right: -100px;
}

/* CONTENT */
.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* TITLE */
.product-cta h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* SUBTEXT */
.cta-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 16px 34px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* HOVER */
.cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px rgba(59, 130, 246, 0.5);
}

/* TRUST */
.cta-trust {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
  .product-cta {
    padding: 70px 20px;
  }

  .product-cta h2 {
    font-size: 28px;
  }

  .cta-sub {
    font-size: 15px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* WRAPPER */
.sticky-add-to-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 20px;
  z-index: 9999;

  transform: translateY(100%);
  transition: transform 0.3s ease;
}

/* ACTIVE */
.sticky-add-to-cart.active {
  transform: translateY(0);
}

/* INNER */
.sticky-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* INFO */
.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.sticky-price {
  color: #cbd5f5;
  font-size: 13px;
}

/* BUTTON */
.sticky-btn {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* STICKY WRAPPER */

/* estado visible */

.sticky-add-to-cart {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(140%) scale(0.96);
  opacity: 0;

  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;

  will-change: transform, opacity;
  width: calc(100% - 32px);
  max-width: 720px;

  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);

  border-radius: 14px;
  padding: 10px 14px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

  z-index: 9999;
}
.sticky-add-to-cart.active {
  transform: translateX(-50%) translateY(0) scale(1);
  opacity: 1;
}

/* layout */
.sticky-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* image FIX */
.sticky-image img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
}

/* info */
.sticky-info {
  flex: 1;
}

.sticky-title {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.sticky-meta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sticky-price {
  color: #cbd5f5;
  font-size: 12px;
}

.sticky-variation {
  font-size: 11px;
  color: #94a3b8;
}

/* button */
.sticky-btn {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border: none;
  color: #fff;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sticky-btn:hover {
  transform: translateY(-1px);
}

/* MOBILE */
@media (max-width: 768px) {
  .sticky-add-to-cart {
    bottom: 10px;
    border-radius: 12px;
  }

  .sticky-title {
    font-size: 12px;
  }

  .sticky-price {
    font-size: 11px;
  }
}

.sticky-image img {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.sticky-add-to-cart.active .sticky-image img {
  transform: scale(1.05);
}

/* END PRODUCT PAGE -------------------- */
