:root {

  --purple: #7A5C99;
  --purple-dark: #5E437A;
  --purple-soft: #CBB8D9;

  --background: #F5F1F7;
  --background-soft: #EEE7F2;

  --white: #FFFFFF;

  --text: #4F4557;
  --text-soft: #7A7182;

  --border: #E7DDF0;

  --shadow:
    0 10px 30px rgba(122, 92, 153, 0.12);

}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {

  color: var(--text);

  background: var(--background);

  line-height: 1.6;

}

a {
  color: inherit;
  text-decoration: none;
}

.section {
  padding: 90px 20px;
  scroll-margin-top: 90px;
  position: relative;
}

.section::after {

  content: "";

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 80%;

  height: 1px;

  background:
    linear-gradient(
      to right,
      transparent,
      rgba(122,92,153,.12),
      transparent
    );

}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {

  font-size: clamp(2rem, 4vw, 3rem);

  color: var(--purple-dark);

  margin-bottom: 14px;

  font-weight: 800;

}

.section-title p {

  font-size: 1.05rem;

  color: var(--text-soft);

}

.translation {
  display: block;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-top: 6px;
}

.site-header {

  position: sticky;

  top: 0;

  z-index: 999;

  background: rgba(255,255,255,.75);

  backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--border);

}

.nav {
  max-width: 1150px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {

  font-weight: 800;

  color: var(--purple-dark);

  font-size: 1.2rem;

}

.nav-toggle {

  background: var(--purple);

  color: white;

  border: none;

  padding: 10px 14px;

  border-radius: 12px;

  cursor: pointer;

}

.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 12px;

  background: white;

  position: absolute;

  top: 70px;

  right: 20px;

  padding: 18px;

  border-radius: 20px;

  box-shadow: var(--shadow);

}

.nav-links a {

  font-weight: 700;

  color: var(--text);

}

.nav-links.open {
  display: flex;
}

.lang-toggle {

  border: 1px solid var(--border);

  background: white;

  color: var(--text);

  padding: 8px 14px;

  border-radius: 999px;

  font-weight: 700;

  cursor: pointer;

}

.lang-option.active {

  color: var(--purple-dark);

}

.hero-text h1,
.section-title h2,
.emotional-card h2 {

  font-family: 'Cormorant Garamond', serif;

  letter-spacing: .5px;

}


.hero {

  background:
    radial-gradient(circle at top left,
      rgba(203,184,217,.35),
      transparent 30%),

    radial-gradient(circle at bottom right,
      rgba(122,92,153,.18),
      transparent 30%),

    #F5F1F7;

  position: relative;

  overflow: hidden;

}

.hero::before {

  content: "";

  position: absolute;

  inset: -10%;

  background:

    radial-gradient(
      circle at 15% 20%,
      rgba(122,92,153,.10),
      transparent 22%
    ),

    radial-gradient(
      circle at 80% 25%,
      rgba(122,92,153,.08),
      transparent 28%
    ),

    radial-gradient(
      circle at 60% 75%,
      rgba(122,92,153,.10),
      transparent 24%
    ),

    radial-gradient(
      circle at 35% 60%,
      rgba(203,184,217,.18),
      transparent 20%
    ),

    radial-gradient(
      circle at 75% 70%,
      rgba(203,184,217,.15),
      transparent 22%
    );

  filter: blur(55px);

  opacity: .85;

  z-index: 0;

  pointer-events: none;

}

.logo-badge {

  position: relative;

}

.logo-badge::before {

  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  left: 50%;

  top: 50%;

  transform: translate(-50%, -50%);

  background:
    radial-gradient(
      circle,
      rgba(122,92,153,.12),
      transparent 65%
    );

  filter: blur(45px);

  z-index: 0;

}

.hero::after {

  content: "";

  position: absolute;

  inset: 0;

  background:
    url("data:image/svg+xml,%3Csvg width='1600' height='900' viewBox='0 0 1600 900' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.18'%3E%3Cpath d='M0 450C180 300 320 620 520 450C720 280 860 640 1080 430C1280 250 1420 620 1600 420' stroke='%237A5C99' stroke-width='2'/%3E%3Cpath d='M0 520C220 340 380 680 640 500C860 350 1040 690 1280 510C1460 380 1560 620 1600 560' stroke='%237A5C99' stroke-width='2'/%3E%3Cpath d='M0 360C200 260 400 520 620 360C840 210 1020 500 1280 350C1450 250 1560 420 1600 390' stroke='%237A5C99' stroke-width='2'/%3E%3C/g%3E%3C/svg");

  background-size: cover;

  background-repeat: no-repeat;

  opacity: .08;

  filter: blur(14px);

  z-index: 0;

  pointer-events: none;

}

.hero-content {

  position: relative;

  max-width: 1150px;

  margin: 0 auto 40px;

  display: flex;

  flex-direction: column;

  gap: 40px;

}

.hero-text h1 {

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(4rem, 8vw, 6rem);

  color: var(--purple-dark);

  line-height: .95;

  font-weight: 700;

  margin-bottom: 22px;

}

.supporting {

  margin-top: 10px;

  color: var(--text-soft);

  font-size: 1.1rem;

}

.cta {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  margin-top: 24px;

  padding: 16px 28px;

  background:
    linear-gradient(
      135deg,
      #8D6BB0,
      #6F4D8C
    );

  color: white;

  border-radius: 999px;

  font-weight: 700;

  box-shadow: var(--shadow);

  transition: .25s ease;

}

.cta:hover {

  transform: translateY(-4px);

  box-shadow:
    0 18px 40px rgba(122,92,153,.25);

}

.cta.large {

  padding: 18px 34px;

  font-size: 1.05rem;

}

.hero-badge {

  display: flex;

  justify-content: center;

}

.logo-badge-img {

  width: 220px;

  height: 220px;

  object-fit: contain;

  filter: drop-shadow(0 20px 40px rgba(122,92,153,.2));

}

.benefit-strip {

  position: relative;

  display: grid;

  gap: 16px;

  grid-template-columns:
    repeat(auto-fit, minmax(190px, 1fr));

  max-width: 1150px;

  margin: 0 auto;

  background: rgba(255,255,255,.65);

  backdrop-filter: blur(12px);

  border: 1px solid var(--border);

  border-radius: 24px;

  padding: 24px;

  font-weight: 600;

  box-shadow: var(--shadow);

}

.product-grid {

  display: grid;

  gap: 40px;

  max-width: 1150px;

  margin: 0 auto;

}

.descriptor {

  font-weight: 800;

  color: var(--purple-dark);

  margin-bottom: 18px;

  font-size: 1.1rem;

}

.checklist {

  list-style: none;

  display: grid;

  gap: 10px;

  margin-bottom: 24px;

}

.price-callout {

  background:
    linear-gradient(
      135deg,
      rgba(203,184,217,.45),
      rgba(238,231,242,.9)
    );

  padding: 20px;

  border-radius: 20px;

  font-weight: 800;

  color: var(--purple-dark);

  margin-bottom: 20px;

  border: 1px solid var(--border);

}

.price-callout small {

  display: block;

  margin-top: 6px;

}

.product-visual {

  display: grid;

  gap: 24px;

}

.product-image {

  display: block;

  width: 100%;

  max-width: 280px;

  margin: 0 auto;

}

.storage-card {

  background: rgba(255,255,255,.8);

  padding: 24px;

  border-radius: 24px;

  box-shadow: var(--shadow);

  border: 1px solid var(--border);

}

.storage-card h3 {

  color: var(--purple-dark);

  margin-bottom: 14px;

}

.storage-card ul {

  padding-left: 20px;

  display: grid;

  gap: 10px;

}

.petshop {

  background: var(--background);

}

.petshop-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 12px;

  max-width: 1150px;

  margin: 0 auto;

}

.petshop-card{
    position:relative;
    background:rgba(255,255,255,.82);
    border:1px solid var(--border);
    border-radius:28px;
    padding:16px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    min-height:430px;
    transition:.25s ease;
    box-shadow:var(--shadow);

}

.petshop-card:hover {

  transform: translateY(-6px);

  box-shadow:
    0 18px 40px rgba(122,92,153,.16);

}

.petshop-img{
    width:100%;
    height:190px;
    object-fit:contain;
    margin-bottom:12px;
}

.product-title{
    color:var(--purple-dark);
    font-size:1rem;
    font-weight:800;
    line-height:1.35;
    margin:12px 0;
    min-height:56px;

}

.product-desc {

  color: var(--text-soft);

  font-size: .92rem;

  margin-bottom: 12px;

}

.petshop-price{
    font-size:1.35rem;
    font-weight:900;
    color:var(--purple-dark);
    margin-bottom:18px;

}

.petshop-btn{
    margin-top:auto;
    width:100%;
    height:48px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:14px;
    background:linear-gradient(
        135deg,
        #8D6BB0,
        #6F4D8C
    );
    color:#fff;
    font-weight:800;
    transition:.25s;

}
.petshop-btn:hover {

  transform: translateY(-3px);

}

.benefits {

  background:
    linear-gradient(
      180deg,
      #F5F1F7 0%,
      #FFFFFF 100%
    );

}

.quote {

  font-weight: 700;

  color: var(--purple-dark);

}

.benefit-layout {

  display: grid;

  grid-template-columns: 1fr;

  gap: 40px;

  max-width: 1150px;

  margin: 0 auto;

  align-items: center;

}

.benefit-grid {

  display: grid;

  gap: 20px;

}

.benefit-card {

  background: rgba(255,255,255,.82);

  padding: 22px;

  border-radius: 22px;

  box-shadow: var(--shadow);

  border: 1px solid var(--border);

}

.benefit-image img {

  max-width: 420px;

  width: 100%;

  display: block;

  margin: 0 auto;

}

.order {

  background:
    linear-gradient(
      180deg,
      #EEE7F2 0%,
      #F5F1F7 100%
    );

  text-align: center;

}

.order-steps {

  display: grid;

  gap: 20px;

  max-width: 1000px;

  margin: 0 auto 32px;

}

.order-step {

  background: rgba(255,255,255,.82);

  padding: 24px;

  border-radius: 24px;

  box-shadow: var(--shadow);

  border: 1px solid var(--border);

}

.order-step .icon {

  font-size: 2rem;

  margin-bottom: 12px;

}

.emotional-card {

  max-width: 850px;

  margin: 0 auto;

  padding: 36px 28px;

  background: rgba(255,255,255,.75);

  border-radius: 28px;

  box-shadow: var(--shadow);

  border: 1px solid var(--border);

}

.emotional-card h2 {

  color: var(--purple-dark);

  margin-bottom: 18px;

}

.emotional-card .closing {

  font-weight: 700;

  color: var(--purple);

}

.order-strip {

  margin-top: 24px;

  display: grid;

  gap: 14px;

  font-weight: 700;

  color: var(--purple-dark);

}

.footer {

  background: #5E437A;

  color: white;

  text-align: center;

  padding: 60px 20px;

}

.footer h3 {

  font-size: 1.3rem;

  margin-bottom: 10px;

}

.footer p {

  margin-top: 6px;

  opacity: .95;

}

.whatsapp-float {

  position: fixed;

  right: 20px;

  bottom: 20px;

  width: 62px;

  height: 62px;

  background: linear-gradient(
    135deg,
    #8D6BB0,
    #6F4D8C
  );

  color: white;

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: 1.7rem;

  box-shadow:
    0 16px 40px rgba(122,92,153,.35);

  z-index: 999;

}



@media (min-width: 768px) {

  .nav-toggle {
    display: none;
  }

  .nav-links {

    position: static;

    display: flex;

    flex-direction: row;

    flex-wrap: wrap;

    background: transparent;

    padding: 0;

    box-shadow: none;

  }

  .hero-content {

    flex-direction: row;

    align-items: center;

    justify-content: space-between;

  }

  .hero-badge {

    justify-content: flex-end;

  }

  .product-grid {

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    align-items: center;

  }

  .benefit-layout {

    grid-template-columns: 1fr 1fr;

  }

  .order-steps {

    grid-template-columns:
      repeat(3, minmax(0, 1fr));

  }

  .order-strip {

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

  }

  .petshop-grid {

    grid-template-columns: repeat(4, 1fr);

    gap: 28px;

  }

}


.logo-badge-img {

  position: relative;

  z-index: 2;

}

.hero-content,
.benefit-strip {

  position: relative;

  z-index: 2;

}

.category-select {

  background: white;

  border: 1px solid var(--border);

  padding: 10px 16px;

  border-radius: 999px;

  color: var(--purple-dark);

  font-weight: 700;

  cursor: pointer;

  outline: none;

  box-shadow: var(--shadow);

}

/* =========================
   PAGINACION
========================= */

.pagination-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-item {
  list-style: none;
}

.page-link {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #fff;
  color: var(--purple-dark);

  font-weight: 700;
  text-decoration: none;
  border: none;

  box-shadow: var(--shadow);
  transition: all .25s ease;
}

.page-link:hover {
  transform: translateY(-3px);
}

.page-item.active .page-link {
  background: linear-gradient(135deg, #8D6BB0, #6F4D8C);
  color: #fff;
  transform: scale(1.15);
  border: 3px solid #fff;
  box-shadow:
    0 0 0 4px rgba(122, 92, 153, 0.20),
    0 12px 30px rgba(122, 92, 153, 0.35);
  font-weight: 900;
}

.page-item.disabled {
  display: none;
}

/* =========================
   PAGINACION MOVIL
========================= */

@media (max-width: 768px) {

  .pagination-container {
    padding: 0 6px;
    overflow-x: visible;
  }

  .pagination {
    gap: 3px;
    flex-wrap: nowrap;
  }

  .page-link {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 0.8rem;
  }

  .page-item.active .page-link {
    transform: scale(1.05);
  }
}

@media (max-width: 480px) {

  .page-link {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 0.8rem;
  }

  .pagination {
    gap: 3px;
  }

}



/* From Uiverse.io by david-mohseni */ 
.wrapper {
  display: inline-flex;
  list-style: none;
  height: 120px;
  width: 100%;
  padding-top: 40px;
  font-family: "Poppins", sans-serif;
  justify-content: center;
}

.wrapper .icon {
  position: relative;
    background: linear-gradient(
    135deg,
    #8D6BB0,
    #6F4D8C
  );

  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: #1877f2;
  color: #fff;
}

.wrapper .tiktok:hover,
.wrapper .tiktok:hover .tooltip,
.wrapper .tiktok:hover .tooltip::before {
  background: #000;
  color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #e4405f;
  color: #fff;
}

.wrapper .whatsapp:hover,
.wrapper .whatsapp:hover .tooltip,
.wrapper .whatsapp:hover .tooltip::before {
  background: #40e45d;
  color: #fff;
}

/* =========================
   FIX BOTON HERO EN MOVIL
========================= */

.cta {
  position: relative;
  z-index: 20;
}

.hero-text {
  position: relative;
  z-index: 20;
}

.hero-badge,
.logo-badge,
.logo-badge::before,
.logo-badge-img {
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-content {
    position: relative;
    z-index: 10;
  }

  .hero::before,
  .hero::after {
    pointer-events: none;
  }
}


/* ====================  DETALLE PRODUCTO  ===================== */

.detalle-producto{
  max-width:1150px;
  margin:40px auto;
  padding:25px;
  display:grid;
  grid-template-columns:1.2fr .9fr;
  gap:35px;
  background:rgba(255,255,255,.85);
  border:1px solid var(--border);
  border-radius:28px;
  box-shadow:var(--shadow);
}

.detalle-galeria{
  display:grid;
  grid-template-columns:90px 1fr;
  gap:20px;
}

.detalle-miniaturas{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.detalle-miniaturas img{
  width:80px;
  height:80px;
  object-fit:cover;
  border:2px solid var(--border);
  border-radius:14px;
  cursor:pointer;
  background:#fff;
  padding:5px;
  transition:.25s;
}

.detalle-miniaturas img:hover{
  border-color:var(--purple);
  transform:scale(1.05);
}

.detalle-imagen-principal{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:460px;
  padding:20px;
}

.detalle-imagen-principal img{
  width:100%;
  max-height:430px;
  object-fit:contain;
}

.detalle-info{
  padding:10px 5px;
}

.detalle-categoria{
  display:inline-block;
  background:var(--background-soft);
  color:var(--purple-dark);
  font-weight:800;
  padding:8px 14px;
  border-radius:999px;
  margin-bottom:15px;
}

.detalle-info h1{
  font-family:'Cormorant Garamond', serif;
  color:var(--purple-dark);
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1;
  margin-bottom:18px;
}

.detalle-precio{
  font-size:2.4rem;
  font-weight:900;
  color:var(--purple-dark);
  margin-bottom:12px;
}

.detalle-stock{
  color:#0a9f55;
  font-weight:800;
  margin-bottom:20px;
}

.detalle-descripcion{
  background:var(--background);
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px;
  color:var(--text);
  margin-bottom:24px;
}

.detalle-whatsapp{
  display:block;
  text-align:center;
  background:linear-gradient(135deg,#8D6BB0,#6F4D8C);
  color:#fff;
  padding:16px;
  border-radius:16px;
  font-weight:900;
  box-shadow:var(--shadow);
  transition:.25s;
}

.detalle-whatsapp:hover{
  transform:translateY(-3px);
}

.detalle-volver{
  max-width:1150px;
  margin:25px auto 0;
  display:block;
  color:var(--purple-dark);
  font-weight:800;
}

@media(max-width:850px){
  .detalle-producto{
    grid-template-columns:1fr;
    margin:20px;
  }

  .detalle-galeria{
    grid-template-columns:1fr;
  }

  .detalle-miniaturas{
    flex-direction:row;
    overflow-x:auto;
    order:2;
  }

  .detalle-imagen-principal{
    min-height:320px;
  }
}

.detalle-galeria{
    position:relative;
    overflow:hidden;
}

.galeria-scroll{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.galeria-scroll::-webkit-scrollbar{
    display:none;
}

.galeria-scroll img{
    min-width:100%;
    height:430px;
    object-fit:contain;
    background:white;
    scroll-snap-align:center;
    border-radius:18px;
}

.galeria-flecha{
    position:absolute;
    top:45%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:white;
    box-shadow:var(--shadow);
    font-size:2rem;
    color:var(--purple-dark);
    cursor:pointer;
    z-index:5;
}

.galeria-prev{
    left:10px;
}

.galeria-next{
    right:10px;
}

.galeria-dots{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:14px;
}

.galeria-dot{
    width:9px;
    height:9px;
    border-radius:50%;
    background:#d6d6d6;
    transition:.25s;
}

.galeria-dot.active{
    background:#3483fa;
    transform:scale(1.25);
}

.recomendados-section{
    max-width:1150px;
    margin:45px auto;
    padding:0 20px;
}

.recomendados-section h2{
    color:var(--purple-dark);
    margin-bottom:20px;
}

.recomendados-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}

.recomendado-card{
    background:white;
    border:1px solid var(--border);
    border-radius:20px;
    padding:14px;
    box-shadow:var(--shadow);
    transition:.25s;
}

.recomendado-card:hover{
    transform:translateY(-5px);
}

.recomendado-card img{
    width:100%;
    height:150px;
    object-fit:contain;
}

.recomendado-card h3{
    color:var(--purple-dark);
    font-size:.95rem;
    margin:10px 0;
}

.recomendado-card p{
    font-weight:900;
    color:var(--purple-dark);
    font-size:1.1rem;
}

@media(max-width:768px){
    .detalle-producto{
        display:block;
        margin:0;
        padding:12px;
        border-radius:0;
        box-shadow:none;
    }

    .galeria-scroll img{
        height:360px;
        border-radius:0;
    }

    .galeria-flecha{
        display:none;
    }

    .detalle-info{
        background:white;
        padding:18px 14px;
        margin-top:10px;
    }

    .detalle-info h1{
        font-size:1.25rem;
        font-family:inherit;
        line-height:1.25;
    }

    .detalle-precio{
        font-size:2rem;
    }

    .recomendados-grid{
        display:flex;
        overflow-x:auto;
        gap:14px;
        padding-bottom:12px;
    }

    .recomendado-card{
        min-width:160px;
    }
}


/* FIX DETALLE PRODUCTO */

.detalle-producto{
  max-width:1150px;
  min-height:560px;
  align-items:center;
}

.detalle-galeria{
  display:block !important;
  position:relative;
  width:100%;
  min-height:520px;
  overflow:hidden;
  background:#fff;
  border-radius:24px;
}

.galeria-scroll{
  width:100%;
  height:480px;
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
}

.galeria-scroll::-webkit-scrollbar{
  display:none;
}

.galeria-scroll img{
  min-width:100%;
  width:100%;
  height:480px;
  object-fit:contain;
  padding:20px;
  background:#fff;
  scroll-snap-align:center;
}

.galeria-dots{
  position:absolute;
  bottom:18px;
  left:0;
  right:0;
  display:flex;
  justify-content:center;
  gap:9px;
}

.galeria-flecha{
  top:50%;
}

.recomendados-section{
  display:block !important;
  max-width:1150px;
  margin:40px auto 70px;
}

.recomendados-grid{
  display:grid !important;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}

@media(max-width:768px){
  .detalle-producto{
    min-height:auto;
    margin:0;
    padding:0;
  }

  .detalle-galeria{
    min-height:390px;
    border-radius:0;
  }

  .galeria-scroll{
    height:360px;
  }

  .galeria-scroll img{
    height:360px;
    padding:10px;
  }

  .galeria-dots{
    bottom:10px;
  }

  .recomendados-section{
    padding:20px 14px;
    margin:25px 0;
  }

  .recomendados-grid{
    display:flex !important;
    overflow-x:auto;
    gap:14px;
  }

  .recomendado-card{
    min-width:165px;
  }
}

/* =========================
   GALERÍA TIPO MERCADO LIBRE
========================= */

.ml-galeria{
    display:grid;
    grid-template-columns:84px 1fr;
    gap:22px;
    width:100%;
    align-items:start;
}

.ml-miniaturas{
    display:flex;
    flex-direction:column;
    gap:10px;
    max-height:520px;
    overflow-y:auto;
    padding:4px;
}

.ml-miniaturas::-webkit-scrollbar{
    width:4px;
}

.ml-miniaturas::-webkit-scrollbar-thumb{
    background:var(--purple-soft);
    border-radius:10px;
}

.ml-miniatura{
    width:72px;
    height:72px;
    border:2px solid var(--border);
    background:#fff;
    border-radius:12px;
    padding:5px;
    cursor:pointer;
    transition:.2s;
}

.ml-miniatura img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.ml-miniatura:hover,
.ml-miniatura.active{
    border-color:var(--purple);
    box-shadow:0 0 0 3px rgba(122,92,153,.12);
}

.ml-imagen-wrap{
    position:relative;
    background:#fff;
    border-radius:24px;
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.ml-imagen-principal{
    width:100%;
    max-width:560px;
    height:500px;
    object-fit:contain;
    padding:18px;
    transition:.25s ease;
}

.ml-imagen-principal.cambiando{
    opacity:.35;
    transform:scale(.98);
}

.ml-flecha{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:44px;
    height:44px;
    border:none;
    border-radius:50%;
    background:white;
    color:var(--purple-dark);
    font-size:2rem;
    font-weight:800;
    box-shadow:var(--shadow);
    cursor:pointer;
    z-index:5;
}

.ml-prev{
    left:14px;
}

.ml-next{
    right:14px;
}

.ml-contador{
    position:absolute;
    left:16px;
    top:16px;
    background:rgba(255,255,255,.9);
    padding:5px 11px;
    border-radius:999px;
    font-weight:800;
    color:var(--purple-dark);
    box-shadow:var(--shadow);
}

/* móvil */
@media(max-width:768px){

    .ml-galeria{
        display:block;
    }

    .ml-miniaturas{
        display:none;
    }

    .ml-imagen-wrap{
        min-height:360px;
        border-radius:0;
    }

    .ml-imagen-principal{
        height:350px;
        max-width:100%;
        padding:8px;
    }

    .ml-flecha{
        display:none;
    }

    .ml-contador{
        top:12px;
        left:12px;
        font-size:.85rem;
    }

}

/* =========================
   ZOOM IMAGEN PRODUCTO
========================= */

.ml-imagen-wrap.zoom-activo{
    cursor:zoom-in;
}

.ml-imagen-principal.zoom{
    transform:scale(1.8);
    transform-origin:center center;
    cursor:zoom-out;
}

@media(max-width:768px){
    .ml-imagen-principal.zoom{
        transform:none;
    }
}

/* =========================
   RELACIONADOS CARRUSEL
========================= */

.relacionados-section{
    max-width:1150px;
    margin:45px auto 80px;
    padding:0 20px;
}

.relacionados-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.relacionados-header h2{
    color:var(--purple-dark);
    font-size:1.8rem;
}

.relacionados-controles{
    display:flex;
    gap:10px;
}

.relacionados-controles button{
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:white;
    color:var(--purple-dark);
    font-size:1.8rem;
    font-weight:900;
    box-shadow:var(--shadow);
    cursor:pointer;
}

.relacionados-scroll{
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:6px 4px 18px;
    scrollbar-width:none;
}

.relacionados-scroll::-webkit-scrollbar{
    display:none;
}

.rel-card{
    min-width:210px;
    max-width:210px;
    background:white;
    border:1px solid var(--border);
    border-radius:22px;
    padding:14px;
    box-shadow:var(--shadow);
    transition:.25s;
}

.rel-card:hover{
    transform:translateY(-5px);
}

.rel-img-box{
    height:150px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--background);
    border-radius:16px;
    margin-bottom:12px;
}

.rel-img-box img{
    width:100%;
    height:135px;
    object-fit:contain;
}

.rel-card h3{
    color:var(--purple-dark);
    font-size:.95rem;
    line-height:1.2;
    min-height:38px;
    margin-bottom:8px;
}

.rel-precio{
    font-size:1.25rem;
    font-weight:900;
    color:var(--purple-dark);
    margin-bottom:10px;
}

.rel-btn{
    display:block;
    text-align:center;
    background:linear-gradient(135deg,#8D6BB0,#6F4D8C);
    color:white;
    padding:8px;
    border-radius:999px;
    font-size:.78rem;
    font-weight:800;
}

@media(max-width:768px){
    .relacionados-section{
        margin:30px 0 60px;
        padding:0 14px;
    }

    .relacionados-header h2{
        font-size:1.35rem;
    }

    .relacionados-controles{
        display:none;
    }

    .rel-card{
        min-width:165px;
        max-width:165px;
        padding:10px;
    }

    .rel-img-box{
        height:120px;
    }

    .rel-img-box img{
        height:105px;
    }
}

.cantidad-box{
    margin:18px 0;
}

.cantidad-box label{
    font-weight:900;
    color:var(--purple-dark);
}

.cantidad-control{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:8px;
}

.cantidad-control button{
    width:42px;
    height:42px;
    border:none;
    border-radius:12px;
    background:var(--purple-dark);
    color:white;
    font-size:1.4rem;
    font-weight:900;
    cursor:pointer;
}

.cantidad-control input{
    width:80px;
    height:42px;
    text-align:center;
    border:1px solid var(--border);
    border-radius:12px;
    font-weight:900;
}

.cantidad-box small{
    display:block;
    margin-top:6px;
    color:var(--text-soft);
}

/*=========================================
BOTÓN AGREGAR AL CARRITO
=========================================*/

.carrito-box{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:25px;
}

.btn-carrito{

    width:100%;
    height:58px;

    border:none;
    border-radius:16px;

    cursor:pointer;

    background:#fff;

    border:2px solid var(--purple);

    color:var(--purple-dark);

    font-size:1rem;
    font-weight:800;

    transition:.30s;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    box-shadow:var(--shadow);

}

.btn-carrito::before{
    content:"🛒";
    font-size:1.2rem;
}

.btn-carrito:hover{

    background:linear-gradient(
        135deg,
        #8D6BB0,
        #6F4D8C
    );

    color:#fff;

    transform:translateY(-3px);

    box-shadow:
        0 18px 35px rgba(122,92,153,.28);

}

.btn-carrito:active{
    transform:scale(.98);
}

.detalle-whatsapp{

    display:flex;
    justify-content:center;
    align-items:center;

    height:60px;

    border-radius:16px;

    font-weight:900;
    font-size:1rem;

    background:linear-gradient(
        135deg,
        #8D6BB0,
        #6F4D8C
    );

    color:#fff;

    transition:.30s;

}

.detalle-whatsapp:hover{

    transform:translateY(-3px);

    box-shadow:
        0 18px 35px rgba(122,92,153,.30);

}

@media(max-width:768px){

    .btn-carrito,
    .detalle-whatsapp{

        height:55px;
        font-size:.95rem;

    }

}

.cart-navbar{
    position:relative;
    border:none;
    background:white;
    color:var(--purple-dark);
    width:45px;
    height:45px;
    border-radius:50%;
    box-shadow:var(--shadow);
    cursor:pointer;
    font-size:1.3rem;
}

.cart-navbar span{
    position:absolute;
    top:-6px;
    right:-6px;
    background:#ff4d6d;
    color:white;
    width:22px;
    height:22px;
    border-radius:50%;
    font-size:.75rem;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
}

.carrito-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    z-index:9998;
}

.carrito-overlay.activo{
    display:block;
}

.carrito-drawer{
    position:fixed;
    top:0;
    right:-420px;
    width:390px;
    max-width:92%;
    height:100vh;
    background:white;
    z-index:9999;
    box-shadow:-15px 0 40px rgba(0,0,0,.18);
    transition:.3s;
    display:flex;
    flex-direction:column;
}

.carrito-drawer.activo{
    right:0;
}

.carrito-header{
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid var(--border);
}

.carrito-header h3{
    color:var(--purple-dark);
    font-size:1.4rem;
}

.carrito-header button{
    border:none;
    background:var(--background-soft);
    color:var(--purple-dark);
    width:36px;
    height:36px;
    border-radius:50%;
    font-size:1.5rem;
    cursor:pointer;
}

.carrito-items{
    flex:1;
    overflow-y:auto;
    padding:16px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.carrito-item{
    display:grid;
    grid-template-columns:70px 1fr;
    gap:12px;
    border:1px solid var(--border);
    border-radius:16px;
    padding:10px;
    background:var(--background);
}

.carrito-item img{
    width:70px;
    height:70px;
    object-fit:contain;
    background:white;
    border-radius:12px;
}

.carrito-item-info h4{
    font-size:.95rem;
    color:var(--purple-dark);
    margin-bottom:4px;
}

.carrito-item-info p{
    font-weight:900;
    color:var(--purple-dark);
    margin-bottom:8px;
}

.carrito-cantidad{
    display:flex;
    align-items:center;
    gap:8px;
}

.carrito-cantidad button{
    width:28px;
    height:28px;
    border:none;
    border-radius:8px;
    background:var(--purple-dark);
    color:white;
    font-weight:900;
    cursor:pointer;
}

.carrito-cantidad span{
    font-weight:900;
}

.btn-eliminar-carrito{
    margin-left:auto;
    background:#ff4d6d !important;
}

.carrito-vacio{
    text-align:center;
    color:var(--text-soft);
    margin-top:40px;
}

.carrito-footer{
    padding:18px;
    border-top:1px solid var(--border);
    background:white;
}

.carrito-total{
    display:flex;
    justify-content:space-between;
    margin-bottom:14px;
    font-size:1.2rem;
    color:var(--purple-dark);
}

.carrito-whatsapp{
    width:100%;
    border:none;
    border-radius:16px;
    padding:16px;
    background:linear-gradient(135deg,#8D6BB0,#6F4D8C);
    color:white;
    font-weight:900;
    cursor:pointer;
}

/* =========================
   OPINIONES
========================= */

.opiniones-section{
    max-width:1150px;
    margin:45px auto;
    padding:25px;
    background:rgba(255,255,255,.82);
    border:1px solid var(--border);
    border-radius:28px;
    box-shadow:var(--shadow);
}

.opiniones-header{
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:center;
    margin-bottom:25px;
}

.opiniones-header h2{
    color:var(--purple-dark);
    font-size:1.8rem;
}

.opiniones-resumen{
    text-align:right;
}

.opiniones-resumen strong{
    font-size:2rem;
    color:var(--purple-dark);
}

.opiniones-resumen span{
    display:block;
    color:#ffb703;
    font-size:1.2rem;
    letter-spacing:2px;
}

.opiniones-resumen small{
    color:var(--text-soft);
}

.opinion-alerta{
    background:#e7f8ef;
    color:#0a9f55;
    padding:14px;
    border-radius:14px;
    margin-bottom:20px;
    font-weight:800;
}

.opiniones-grid{
    display:grid;
    grid-template-columns:1fr .8fr;
    gap:25px;
}

.opiniones-lista{
    display:grid;
    gap:15px;
}

.opinion-card{
    background:var(--background);
    border:1px solid var(--border);
    border-radius:20px;
    padding:18px;
}

.opinion-stars{
    color:#ffb703;
    font-size:1.2rem;
    margin-bottom:8px;
    letter-spacing:2px;
}

.opinion-card p{
    color:var(--text);
    margin-bottom:10px;
}

.opinion-card strong{
    color:var(--purple-dark);
}

.sin-opiniones{
    background:var(--background);
    padding:18px;
    border-radius:18px;
    color:var(--text-soft);
}

.opinion-form{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:20px;
    box-shadow:var(--shadow);
    display:flex;
    flex-direction:column;
    gap:10px;
}

.opinion-form h3{
    color:var(--purple-dark);
    margin-bottom:5px;
}

.opinion-form label{
    font-weight:900;
    color:var(--purple-dark);
}

.opinion-form input,
.opinion-form select,
.opinion-form textarea{
    width:100%;
    border:1px solid var(--border);
    border-radius:12px;
    padding:12px;
    outline:none;
    font-family:inherit;
}

.opinion-form input:focus,
.opinion-form select:focus,
.opinion-form textarea:focus{
    border-color:var(--purple);
    box-shadow:0 0 0 3px rgba(122,92,153,.12);
}

.opinion-form button{
    margin-top:8px;
    border:none;
    border-radius:16px;
    padding:14px;
    background:linear-gradient(135deg,#8D6BB0,#6F4D8C);
    color:white;
    font-weight:900;
    cursor:pointer;
}

.opinion-form small{
    color:var(--text-soft);
    text-align:center;
}

@media(max-width:768px){
    .opiniones-section{
        margin:25px 12px;
        padding:18px;
    }

    .opiniones-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .opiniones-resumen{
        text-align:left;
    }

    .opiniones-grid{
        grid-template-columns:1fr;
    }
}

.cart-navbar{
    position:relative;
    border:none;
    background:white;
    color:var(--purple-dark);
    width:45px;
    height:45px;
    border-radius:50%;
    box-shadow:var(--shadow);
    cursor:pointer;
    font-size:1.3rem;
}

.cart-navbar span{
    position:absolute;
    top:-6px;
    right:-6px;
    background:#ff4d6d;
    color:white;
    width:22px;
    height:22px;
    border-radius:50%;
    font-size:.75rem;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
}

.carrito-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    z-index:9998;
}

.carrito-overlay.activo{
    display:block;
}

.carrito-drawer{
    position:fixed;
    top:0;
    right:-420px;
    width:390px;
    max-width:92%;
    height:100vh;
    background:white;
    z-index:9999;
    box-shadow:-15px 0 40px rgba(0,0,0,.18);
    transition:.3s;
    display:flex;
    flex-direction:column;
}

.carrito-drawer.activo{
    right:0;
}

.carrito-header{
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid var(--border);
}

.carrito-header h3{
    color:var(--purple-dark);
    font-size:1.4rem;
}

.carrito-header button{
    border:none;
    background:var(--background-soft);
    color:var(--purple-dark);
    width:36px;
    height:36px;
    border-radius:50%;
    font-size:1.5rem;
    cursor:pointer;
}

.carrito-items{
    flex:1;
    overflow-y:auto;
    padding:16px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.carrito-item{
    display:grid;
    grid-template-columns:70px 1fr;
    gap:12px;
    border:1px solid var(--border);
    border-radius:16px;
    padding:10px;
    background:var(--background);
}

.carrito-item img{
    width:70px;
    height:70px;
    object-fit:contain;
    background:white;
    border-radius:12px;
}

.carrito-item-info h4{
    font-size:.95rem;
    color:var(--purple-dark);
    margin-bottom:4px;
}

.carrito-item-info p{
    font-weight:900;
    color:var(--purple-dark);
    margin-bottom:8px;
}

.carrito-cantidad{
    display:flex;
    align-items:center;
    gap:8px;
}

.carrito-cantidad button{
    width:28px;
    height:28px;
    border:none;
    border-radius:8px;
    background:var(--purple-dark);
    color:white;
    font-weight:900;
    cursor:pointer;
}

.carrito-cantidad span{
    font-weight:900;
}

.btn-eliminar-carrito{
    margin-left:auto;
    background:#ff4d6d !important;
}

.carrito-vacio{
    text-align:center;
    color:var(--text-soft);
    margin-top:40px;
}

.carrito-footer{
    padding:18px;
    border-top:1px solid var(--border);
    background:white;
}

.carrito-total{
    display:flex;
    justify-content:space-between;
    margin-bottom:14px;
    font-size:1.2rem;
    color:var(--purple-dark);
}

.carrito-whatsapp{
    width:100%;
    border:none;
    border-radius:16px;
    padding:16px;
    background:linear-gradient(135deg,#8D6BB0,#6F4D8C);
    color:white;
    font-weight:900;
    cursor:pointer;
}

.buscador-nav{
    position:relative;
    flex:1;
    max-width:320px;
}

.buscador-nav input{
    width:100%;
    padding:11px 14px;
    border:1px solid var(--border);
    border-radius:999px;
    outline:none;
    font-weight:700;
}

.resultado-busqueda{
    display:none;
    position:absolute;
    top:48px;
    left:0;
    right:0;
    background:white;
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow:var(--shadow);
    z-index:9999;
    overflow:hidden;
}

.resultado-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px;
    border-bottom:1px solid var(--border);
}

.resultado-item img{
    width:45px;
    height:45px;
    object-fit:contain;
    border-radius:10px;
    background:var(--background);
}

.resultado-item h4{
    font-size:.9rem;
    color:var(--purple-dark);
}

.resultado-item p{
    font-size:.85rem;
    font-weight:900;
    color:var(--purple-dark);
}

@media(max-width:768px){
    .buscador-nav{
        order:5;
        max-width:100%;
        width:100%;
    }
}

/*=========================
FAVORITOS
=========================*/

.btn-favorito{

    position:absolute;

    top:20px;
    right:20px;

    width:52px;
    height:52px;

    border:none;
    border-radius:50%;

    background:white;

    box-shadow:var(--shadow);

    cursor:pointer;

    font-size:1.5rem;

    transition:.25s;

    z-index:20;

}

.btn-favorito:hover{

    transform:scale(1.08);

}

.btn-favorito.activo{

    background:#ff4d6d;
    color:white;

}

.card-favorito{

    position:absolute;

    top:15px;
    right:15px;

    width:38px;
    height:38px;

    border:none;

    border-radius:50%;

    background:white;

    box-shadow:var(--shadow);

    cursor:pointer;

    z-index:30;

}

.card-favorito.activo{

    background:#ff4d6d;
    color:white;

}

.barra-flotante-shop{
    position:fixed;
    right:20px;
    bottom:95px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9997;
}

.barra-flotante-shop button{
    position:relative;
    width:56px;
    height:56px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:var(--purple-dark);
    font-size:1.4rem;
    box-shadow:var(--shadow);
    cursor:pointer;
}

.barra-flotante-shop span{
    position:absolute;
    top:-6px;
    right:-6px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#ff4d6d;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.75rem;
    font-weight:900;
}

.favoritos-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    z-index:9998;
}

.favoritos-overlay.activo{
    display:block;
}

.favoritos-drawer{
    position:fixed;
    top:0;
    right:-420px;
    width:390px;
    max-width:92%;
    height:100vh;
    background:white;
    z-index:9999;
    box-shadow:-15px 0 40px rgba(0,0,0,.18);
    transition:.3s;
    display:flex;
    flex-direction:column;
}

.favoritos-drawer.activo{
    right:0;
}

.favoritos-header{
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid var(--border);
}

.favoritos-header h3{
    color:var(--purple-dark);
}

.favoritos-header button{
    border:none;
    background:var(--background-soft);
    color:var(--purple-dark);
    width:36px;
    height:36px;
    border-radius:50%;
    font-size:1.5rem;
    cursor:pointer;
}

.favoritos-items{
    padding:16px;
    display:flex;
    flex-direction:column;
    gap:14px;
    overflow-y:auto;
}

.favorito-item{
    display:grid;
    grid-template-columns:70px 1fr;
    gap:12px;
    background:var(--background);
    border:1px solid var(--border);
    border-radius:16px;
    padding:10px;
}

.favorito-item img{
    width:70px;
    height:70px;
    object-fit:contain;
    background:white;
    border-radius:12px;
}

.favorito-item h4{
    color:var(--purple-dark);
    font-size:.95rem;
}

.favorito-item p{
    font-weight:900;
    color:var(--purple-dark);
}

.favorito-actions{
    display:flex;
    gap:8px;
    margin-top:8px;
}

.favorito-actions a,
.favorito-actions button{
    border:none;
    border-radius:10px;
    padding:7px 9px;
    font-size:.75rem;
    font-weight:800;
    cursor:pointer;
}

.favorito-actions a{
    background:var(--purple-dark);
    color:white;
}

.favorito-actions button{
    background:#ff4d6d;
    color:white;
}

/* =========================
   VISTOS RECIENTEMENTE
========================= */

.vistos-section{
    max-width:1150px;
    margin:45px auto 80px;
    padding:0 20px;
}

.vistos-header{
    margin-bottom:18px;
}

.vistos-header h2{
    color:var(--purple-dark);
    font-size:1.8rem;
}

.vistos-scroll{
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:6px 4px 18px;
    scrollbar-width:none;
}

.vistos-scroll::-webkit-scrollbar{
    display:none;
}

.visto-card{
    min-width:190px;
    max-width:190px;
    background:white;
    border:1px solid var(--border);
    border-radius:22px;
    padding:14px;
    box-shadow:var(--shadow);
    transition:.25s;
}

.visto-card:hover{
    transform:translateY(-5px);
}

.visto-img-box{
    height:140px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--background);
    border-radius:16px;
    margin-bottom:12px;
}

.visto-img-box img{
    width:100%;
    height:125px;
    object-fit:contain;
}

.visto-card h3{
    color:var(--purple-dark);
    font-size:.9rem;
    line-height:1.2;
    min-height:36px;
    margin-bottom:8px;
}

.visto-card p{
    font-size:1.15rem;
    font-weight:900;
    color:var(--purple-dark);
}

@media(max-width:768px){
    .vistos-section{
        margin:30px 0 60px;
        padding:0 14px;
    }

    .vistos-header h2{
        font-size:1.35rem;
    }

    .visto-card{
        min-width:160px;
        max-width:160px;
        padding:10px;
    }

    .visto-img-box{
        height:115px;
    }

    .visto-img-box img{
        height:100px;
    }
}

.favorite-navbar{

    position:relative;

    width:46px;
    height:46px;

    border:none;
    border-radius:50%;

    background:#fff;

    cursor:pointer;

    font-size:1.2rem;

    box-shadow:0 4px 15px rgba(0,0,0,.08);

    transition:.25s;

}

.favorite-navbar:hover{

    transform:translateY(-2px);

}

.favorite-navbar span{

    position:absolute;

    top:-6px;
    right:-6px;

    width:22px;
    height:22px;

    border-radius:50%;

    background:#ff4d6d;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:.72rem;
    font-weight:700;

}

.card-favorito{

    color:#444;
    transition:.25s;

}

.card-favorito:hover{

    transform:scale(1.15);

}

.card-favorito.activo{

    color:#ff1e4d;
    text-shadow:0 0 12px rgba(255,30,77,.45);

}

.petshop-card{
    position:relative;
    overflow:hidden;
}

.petshop-btn{
    margin-top:auto;
    width:100%;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.ml-mobile-scroll{
    display:none;
}

@media(max-width:768px){
    .ml-imagen-principal{
        display:none !important;
    }

    .ml-mobile-scroll{
        display:flex !important;
        width:100%;
        height:360px;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        scroll-behavior:smooth;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
    }

    .ml-mobile-img{
        min-width:100%;
        width:100%;
        height:360px;
        object-fit:contain;
        scroll-snap-align:center;
        background:#fff;
        padding:8px;
    }

    .ml-miniaturas{
        display:flex !important;
        flex-direction:row;
        overflow-x:auto;
        max-height:none;
    }
}

@media(max-width:768px){

    .ml-imagen-wrap{
        overflow:hidden !important;
        touch-action:pan-x !important;
    }

    .ml-imagen-principal{
        display:none !important;
    }

    .ml-mobile-scroll{
        display:flex !important;
        width:100% !important;
        height:360px !important;
        overflow-x:scroll !important;
        overflow-y:hidden !important;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
        touch-action:pan-x !important;
    }

    .ml-mobile-img{
        flex:0 0 100% !important;
        width:100% !important;
        height:360px !important;
        object-fit:contain;
        scroll-snap-align:center;
        pointer-events:none;
        user-select:none;
    }

    .ml-imagen-principal.zoom{
        transform:none !important;
    }

    .ml-flecha{
        display:none !important;
    }
}