/* =========================
   RESET Y BASE
========================= */
:root {
  --gold: #d4af37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding-top: 90px;
}
.barra-envios {
    position: sticky;
    top: 80px;
    z-index: 999;

    display: flex;
    justify-content: center;  /*centra horizontalmente*/
    align-items: center;      /*centra verticalmente*/
    gap: 16px;

    height: 150px;
    background-color: #23165c;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
}
.barra-envios-mujeres {
    position: sticky;
    top: 80px;
    z-index: 999;

    display: flex;
    justify-content: center;  /*centra horizontalmente*/
    align-items: center;      /*centra verticalmente*/
    gap: 16px;

    height: 150px;
    background-color: #5c095f;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
}

.envios-icono {
    width: auto;
    height: auto;
}
@media (max-width: 768px) {
    .barra-envios {
        top: 65px;
        height: 40px;
        padding: 2px;
        text-align: center;
        font-size: 10px;
        margin-top: -10px;
    }
}
@media (max-width: 768px) {
    .barra-envios-mujeres {
      top: 65px;
        height: 40px;
        padding: 2px;
        text-align: center;
        font-size: 11px;
        margin-top: -10px;
    }
}
/* =========================
   CONTENIDO
========================= */


.destacados { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0px 0px 0px 0px;
    gap: 30px;
    background:     #f1ede6

}

.destacado-imagen {
    width: 100%;
    text-align: left;
}
 .destacado-imagen img {
    max-width: 100%;
    }


/* =========================
   FOOTER
========================= */
.footer {
    background-color: #111;
    color: #aaa;
    text-align: center;
    padding: 14px 0;
    font-size: 13px;
}

.barra-envios-varones {
    position: sticky;
    top: 80px;
    z-index: 999;

    display: flex;
    justify-content: center;  /*centra horizontalmente*/
    align-items: center;      /*centra verticalmente*/
    gap: 16px;

    height: 40px;
    background-color: #050431;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
}
/* buscador */



.buscador input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-size: 14px;
    padding: 6px;
}

.destacados-2 {
    display: flex;
    justify-content: center;

    gap: 45px;
    padding: 80px 60px;
    background:     #f1ede6
}
@media (max-width: 768px) {
  

  

 .bnt-principal {
    padding: 7px 18px;
    font-size: 13px;
  }
  .bnt-secundario {
    padding: 6px 14px;
    font-size: 12px;
}
}

.coleccion-card {
    position: relative;
    width: 480px;
    height: 570px;
    border-radius: 28px;
    overflow: hidden;

    box-shadow: 0 30px 60px rgba(0, 0, 0, 35);

    transition: 
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.6s ease;
}


.coleccion-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 215, 100, 0.25) 50%,
        transparent 70%
    );
    transform: rotate(25deg);
    transition: all 1s ease;
    pointer-events: none;
}

.coleccion-card:hover::before {
    top: -20%;
    left: -20%;
}

.coleccion-card:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.coleccion-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    transition: transform 1.2s ease;
}
.coleccion-card:hover img {
    transform: scale(1.08);
}
.coleccion-botones {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 70%;
}
.bnt-principal {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #1b0f3a;
    padding: 8px 28px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}
.bnt-principal:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #e6c55a, #c9a33b);
}
.bnt-secundario {
    background: rgba(0,0,0,0.55);
    color: white;
    text-align: center;
    padding: 7px 24px;
    border-radius: 13px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    display: inline-block;
}
.bnt-secundario:hover {
    background: rgba(255,255,255,0.15);
}
/* Animación base */
.scroll-reveal {
    opacity: 0;
    transform: translateY(80px) scale(0.96);
    filter: blur(8px);
    transition: 
        opacity 1s ease,
        transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.1s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}
/*lo mas vendido*/

.mas-vendidos {
    padding: 80px 8%;
    background: #f1ede6;
}

.mas-vendidos h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    font-weight: 700;
}

.grid-productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.producto-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    text-align: center;
    transition: transform .4s, box-shadow .4s;
}

.producto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

.producto-card img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 15px;
}

.producto-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.precio {
    font-size: 18px;
    color: #cfa640;
    font-weight: bold;
    margin-bottom: 15px;
}

.btn-producto {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: black;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}
/* lo mas vendidos para movil */
@media (max-width: 768px) {
    .grid-productos {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 12px 16px 24px;
        -webkit-overflow-scrolling: touch;
    }
    .grid-productos ::-webkit-scrollbar {
        display: none;
    }
    .grid-productos .producto-card {
        background: #ffffff;
        border-radius: 28px;
        padding: 16px 14px 18px;
        box-shadow: 
            0 10px 25px rgba(0,0,0,0.08);
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    .grid-productos .producto-card img {
        max-height: 360px;
        object-fit: contain;
        border-radius: 22px;
        margin-bottom: 14px;
    }
    .grid-productos .producto-card h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    .grid-productos .producto-card .precio {
        font-size: 15px;
    }
    .producto-card {
        transform: translate(0); scale: 1;
        box-shadow: 0 12px 28px rgba(0,0,0,0.08);
        transition:
          transform .45s ease, cubic-bezier(0.16, 1, 0.3, 1),
          box-shadow .45s ease;
          filter: 0.45s ease;
        will-change: transform;
        padding: 18px;
    }
    .producto-card:active {
       transform: translate(-8px) scale(1.015);
       box-shadow: 0 28px 60px rgba(0,0,0,0.18);
       filter: brightness(1.02);

    }

}

/* seccion 3 por que elegirnos */
.zona-venta {
    background: #f1ede6;
    padding: 40px 0;
}
.porque-kyrosch {
    padding: 80px 20px;
    text-align: center;
    background: #f1ede6;
}

.porque-kyrosch h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}

.beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    
}

.beneficio {
    background: white;
    padding: 40px 25px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
   
    opacity: 0;
    transform: translatey(50px) scale(0.96);
    transition: 
      opacity 0.8s ease,
      transform 0.8s cubic-bezier(.22, .61, .36, 1),
      box-shadow 0.4s ease;
}
.beneficio.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}
.beneficio span {
    font-size: 42px;
    display: inline-block;
    margin-bottom: 16px;
    animation: floatIcon 4s ease-in-out infinite;
}

.beneficio:hover {
    transform: translateY(-10px);
}

.beneficio span {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.beneficio h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.beneficio p {
    color: #555;
}
/* ANIMACIÓN ICONO */
@keyframes floatIcon {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .beneficios {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .porque-kyrosch {
    padding: 60px 15px;
  }

  .porque-kyrosch h2 {
    font-size: 30px;
  }

  .beneficios {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/*porque kyros movil*/
@media (max-width: 768px) {

}
/* bloque de compra */
.bloque-compra {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(180deg,  #f2ece4, #ffffff)
}

.bloque-compra h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
    letter-spacing: -0.5;
}

.bloque-compra p {
    max-width: 620px;
    margin: 0 auto 36px;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.btn-compra {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: linear-gradient(135deg, #25d366, #1ebe57);
  color: #fff;
  padding: 18px 42px;
  border-radius: 999px;

  font-size: 18px;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: pulseWhats 2.6s infinite;
}

.btn-compra:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.45);
}

@keyframes pulseWhats {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

.confianza {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 24px;

    font-size: 15px;
    color: #444;
}
.confianza span { 
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
/* confianza para movil*/
@media (max-width: 768px) {
  .bloque-compra {
    padding: 60px 16px;
  }

  .bloque-compra h2 {
    font-size: 32px;
  }

  .bloque-compra p {
    font-size: 16px;
  }

  .btn-compra {
    width: 100%;
    max-width: 340px;
    padding: 18px;
    font-size: 17px;
  }

  .confianza {
    flex-direction: column;
    gap: 15px;
    margin-top: 28px;
    align-items: center;
  }
}
/*como comprar*/
.bloque-compra {
    margin-bottom: -40px;
    position: relative;
    z-index: 60px;
}
.como-comprar {
    padding: 90px 20px;
    background: #fff;
    text-align: center;
    padding-top: 60px;
}

.como-comprar h2 {
    margin-bottom: 18px;
    font-weight: 800;
    font-size: 32px;
}

.como-comprar .subtitulo {
    font-size: 18px;
    color: #6b6b6b;
    margin-bottom: 60px;
}

.pasos {
    display: grid;
    grid-template-columns: repeat(3,  1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.paso {
    background: #f1ede6;
    padding: 45px 30px;
    border-radius: 30px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.paso:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.12);
}

.numero {
    display: inline-block;
    align-items: center;
    justify-content: center;
    background: #d4af37;
    color: black;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #d4b24c, #f1d77a);
    border-radius: 50%;
    font-size: 22px;
    font-weight: 800;
    color: #111;
    font-size: 20px;
    margin-bottom: 18px;
    padding: 13px;
}

.paso h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.paso p {
    color: #555;
    font-size: 16px;
}
.paso {
    opacity: 0;
    transition: translate(40px);
    animation: fadeUp 0.9s ease forwards;
}
.paso:nth-child(1) { animation-delay: 0.1s; }
.paso:nth-child(2) { animation-delay: 0.25s; }
.paso:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .como-comprar {
    padding: 70px 16px;
  }

  .como-comprar h2 {
    font-size: 32px;
  }

  .pasos {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .paso {
    padding: 28px 28px;
  }
}

/* Footer */
.footer-kyrosch {
    position: relative;
    background: radial-gradient(circle at top, #1a1a1a 0%, #0b0b0b 70%);
    color: white;
    padding: 80px 10% 30px;
    opacity: 0;
    transform: translateY(60px);
    will-change: transform, opacity;
}
.footer-kyrosch.visible {
    opacity: 1;
    transform: translateY(0);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.8s ease;
}
.footer-kyrosch::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    opacity: 0.6;
}

.footer-contenido {
    align-items: flex-start;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-col h4 {
    color: #d4af37;
    font-size: 15px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
.footer-kyrosch.visible .footer-col {
    opacity: 1;
    transform: translateY(0);
}
.footer-kyrosch.visible .footer-col:nth-child(1) { transition-delay: 0.1s; }
.footer-kyrosch.visible .footer-col:nth-child(2) { transition-delay: 0.2s; }
.footer-kyrosch.visible .footer-col:nth-child(3) { transition-delay: 0.3s; }
.footer-kyrosch.visible .footer-col:nth-child(4) { transition-delay: 0.4s; }
.footer-col a {
    position: relative;
    line-height: 1.8;
}

.footer-kyrosch a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.footer-kyrosch a:hover {
    color: #d4af37;
    text-shadow: 0 0 6px rgba(212,175,55,0.4);
}
.footer-logo {
    width: 190px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.55));
    transition: all 0.4s ease;
}
.footer-logo:hover {
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8));
    transform: scale(1.05);
}

.footer-col p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 260px;
}

.footer-correo {
    margin-top: 10px;
    color: #d4af37;
}

.footer-copy {
    text-align: center;
    margin-top: 60px;
    font-size: 13px;
    color: #777;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-contenido {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-contenido {
        grid-template-columns: 1fr;
    }
}


section {
    position: relative;
    overflow: visible;
}

.footer-kyrosch,
.bloque-compra,
.porque-kyrosch,
.destacados {
    position: relative;
    overflow: visible;
}


/* buscador (desktop) */
.buscador {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f0f0;
  padding: 6px 12px;
  border-radius: 30px;
  min-width: 320px;
}
.buscador input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-size: 14px;
}
.buscador button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

/* menu desktop */
.menu-mobile-panel {
  display: flex;
  gap: 20px;
  align-items: center;
}
.volver {
  text-decoration: none;
  color: #ff0000;
  font-weight: 500;

}
.menu-link {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.4px;
}
.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s;
}
.menu-link:hover::after { 
    width: 100%;
}


/* ========== MOBILE FINAL ========== */
@media (max-width: 768px) {

  :root { --header-height: 65px; }

  .logo { 
    width: 150px; 
}

  .menu, 
  .buscador {
    display: none;

  }

  /* mostrar iconos móviles */
  .menu-toggle,
  .mobile-search {
    display: block;
  }
}

/* small fixes found */
.coleccion-card {
  /* box-shadow corrected alpha */
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {

  .destacados-2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 16px;
    width: 100%;
  }

  .coleccion-card {
    width: 100% !important;
    height: 320px;
    border-radius: 18px;
  }

  .coleccion-card img {
    border-radius: 18px;
    object-fit: cover;
  }
}
/* ===============================
   ANIMACIÓN COLECCIONES - SOLO MOBILE
=============================== */
@media (max-width: 768px) {

  .coleccion-card {
    opacity: 0;
    transform: translateY(35px) scale(0.96);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
  }

  .coleccion-card.aparece {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}
/* ===========================
   ANIMACIÓN COLECCIÓN – MOBILE
=========================== */
@media (max-width: 768px) {

  .coleccion-card.scroll-reveal {
    transform: translateY(60px) scale(0.94);
    filter: blur(10px);
  }

  .coleccion-card.scroll-reveal.active {
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition: 
      transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
      filter 1.1s ease,
      opacity 0.8s ease;
  }

}
/* ===========================
   BOTONES PREMIUM – MOBILE
=========================== */
@media (max-width: 768px) {

  .coleccion-botones {
    animation: botones-float 4s ease-in-out infinite;
  }

  .bnt-principal {
    position: relative;
    overflow: hidden;
    animation: pulse-gold 2.8s ease-in-out infinite;
  }

  .bnt-principal::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent 30%,
      rgba(255,255,255,0.55) 50%,
      transparent 70%
    );
    animation: shine 3s infinite;
  }

  .bnt-secundario {
    backdrop-filter: blur(6px);
    animation: soft-glow 3.5s ease-in-out infinite;
  }

}

/* ===== ANIMACIONES ===== */

@keyframes botones-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 rgba(212,175,55,0.4); }
  50% { box-shadow: 0 0 22px rgba(212,175,55,0.85); }
  100% { box-shadow: 0 0 0 rgba(212,175,55,0.4); }
}

@keyframes shine {
  0% { left: -120%; }
  50% { left: 120%; }
  100% { left: 120%; }
}

@keyframes soft-glow {
  0% { box-shadow: 0 0 0 rgba(255,255,255,0.1); }
  50% { box-shadow: 0 0 18px rgba(255,255,255,0.35); }
  100% { box-shadow: 0 0 0 rgba(255,255,255,0.1); }
}
/* ===============================
   AJUSTE PREMIUM BOTONES - MOBILE
=============================== */
@media (max-width: 768px) {

  .bnt-principal,
  .bnt-secundario {
    transition: 
      transform 0.25s ease,
      box-shadow 0.25s ease,
      background 0.25s ease;
  }

  .bnt-principal:active,
  .bnt-secundario:active {
    transform: scale(0.95);
  }

}
/* ===============================
   CORRECCIÓN POSICIÓN BOTONES MOBILE
=============================== */
@media (max-width: 768px) {

  .coleccion-botones{
    left: 0 !important;
    transform: none !important;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .bnt-principal,
  .bnt-secundario{
    width: 100%;
    text-align: center;
  }

}
/* Capa base del card */
.coleccion-card {
  position: relative;
}

/* Textos Colección */
.coleccion-card h1,
.coleccion-card h2,
.coleccion-card h3,
.coleccion-card .titulo-coleccion {
  position: relative;
  z-index: 2;
}

/* Botones siempre encima */
.coleccion-botones {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 3;
}
/* ===== AJUSTE FINO DE BOTONES EN MÓVIL ===== */
@media (max-width: 768px) {

  .coleccion-botones {
    bottom: 20px;           /* los baja */
    gap: 10px;              /* separa los dos botones */
  }

  .bnt-principal {
    padding: 4px 26px;
    font-size: 14px;
  }

  .bnt-secundario {
    font-size: 13px;
    padding: 5px 22px;
  }

}
/* ======================================
   BOTÓN DE COMPRA KYROSCH – DEFINITIVO
   Desktop + Mobile
====================================== */

.btn-producto {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.6px;
    color: #1b0f3a;

    background: linear-gradient(
        135deg,
        #d4af37,
        #f3d77a,
        #b8962e
    );
    background-size: 200% 200%;

    box-shadow:
        0 10px 22px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.45);

    /* ESTADO INICIAL (ANTES DE ENTRAR) */
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    filter: blur(8px);

    transition:
        opacity 0.9s ease,
        transform 1s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.9s ease,
        box-shadow 0.3s ease;
}

/* ===== CUANDO APARECE EN PANTALLA ===== */
.btn-producto.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);

    animation:
        kyrosch-float 3.2s ease-in-out infinite,
        kyrosch-glow 4.5s ease infinite;
}

/* ===== INTERACCIÓN (PC + MÓVIL) ===== */
.btn-producto:hover,
.btn-producto:active {
    transform: translateY(-4px) scale(1.07);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

/* ===== ANIMACIÓN FLOTANTE ===== */
@keyframes kyrosch-float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* ===== BRILLO DORADO VIVO ===== */
@keyframes kyrosch-glow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== AJUSTE MOBILE ===== */
@media (max-width: 768px) {
    .btn-producto {
        padding: 16px 40px;
        font-size: 16px;
        margin: 0px;
    }
}
@media (max-width: 768px) {

  /* Quita espacio excesivo antes del "¿Por qué elegir?" */
  .zona-venta {
    padding-top: 30px !important;
    margin-top: -0 !important;
  }

  /* Por si la sección anterior empuja */
  .mas-vendidos,
  .grid-productos {
    margin-bottom: -15px !important;
  }
}
@media (max-width: 768px) {
  .zona-venta::before {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #d4b24c;
    border-radius: 10px;
    margin: 0 auto 18px;
  }
}
@media (max-width: 768px) {
  .zona-venta {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .zona-venta h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .zona-venta p {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {

  .footer-kyrosch {
    padding: 50px 22px 30px;
  }

  /* GRID PRINCIPAL */
  .footer-contenido {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 26px;
    align-items: start;
  }

  /* BLOQUE LOGO + FRASE */
  .footer-col:nth-child(1) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
  }

  .footer-logo {
    max-width: 160px; /* LOGO MÁS GRANDE */
  }

  .footer-col:nth-child(1) p {
    font-size: 13.5px;
    line-height: 1.55;
    color: #cfcfcf;
  }

  /* KYROSCH LINKS */
  .footer-col:nth-child(2) {
    grid-column: 1 / 2;
  }

  /* ATENCIÓN */
  .footer-col:nth-child(3) {
    grid-column: 2 / 3;
  }

  /* CONTACTO ocupa ancho completo */
  .footer-col:nth-child(4) {
    grid-column: 1 / -1;
  }

  /* TÍTULOS */
  .footer-col h4 {
    font-size: 14px;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    position: relative;
  }

  .footer-col h4::after {
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
    margin-top: 6px;
  }

  /* LINKS */
  .footer-col a {
    font-size: 14px;
    margin-bottom: 3px;
    display: block;
    color: #dcdcdc;
  }

  /* CONTACTO LINKS un poco más grandes */
  .footer-col:nth-child(4) a {
    font-size: 15px;
  }

  /* COPYRIGHT */
  .footer-copy {
    margin-top: 32px;
    padding-top: 14px;
    font-size: 12px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    grid-column: 1 / -1;
  }
}
/* =========================
   LINKS DEL MENÚ (PC)
   ========================= */

.menu-mobile-panel .menu-link {
    position: relative;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.3s ease;
}

/* Línea inferior (oculta) */
.menu-mobile-panel .menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4b24c, #f3de8a);
    transition: width 0.35s ease;
    border-radius: 2px;
}

/* Hover */
.menu-mobile-panel .menu-link:hover::after {
    width: 100%;
}

.menu-mobile-panel .menu-link:hover {
    color: #000;
}
.titulo-seccion2 {
  width: 100%;
  padding: 15px 0;
  background-color: #f1ede6;
  text-align: center;

}
.titulo-seccion2 h1 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 0;
  

}
.banner-envio {
    position: sticky;
    top: 80px;
    z-index: 999;

    display: flex;
    justify-content: center;  /*centra horizontalmente*/
    align-items: center;      /*centra verticalmente*/
    gap: 5px;

    height: 40px;
    background-color: #4b2c82;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
}
@media (max-width: 768px) {
  .pagina-interna {
    justify-content: center;
    font-size: 11px;


  }
  .banner-envio {
    top: 65px;
  }
}
.blusas-productos {
  padding: 40px 60px;
  background-color: #f1ede6;
}

.blusas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.blusas-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.blusas-card:hover {
  transform: translateY(-6px);
}

.blusas-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.blusas-card h3 {
  font-size: 16px;
  margin: 15px 10px 5px;
  color: #333;
}

.blusas-precio {
  font-size: 18px;
  font-weight: bold;
  color: #c9a24d;
  margin-bottom: 10px;
}

.blusas-btn {
  display: inline-block;
  margin-bottom: 15px;
  padding: 10px 22px;
  background: #c9a24d;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.blusas-btn:hover {
  background:linear-gradient(180deg, #f1d77a, #d4b24c)
}
@media (max-width: 600px) {
  .blusas-productos {
    padding: 20px 12px;
  }

  .blusas-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 en celular */
    gap: 12px;
  }

  .blusas-card img {
    height: 230px;
  }

  .blusas-card h3 {
    font-size: 14px;
  }

  .blusas-precio {
    font-size: 15px;
  }

  .blusas-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}
.blusas-extra {
  background: #f1ede6;
  padding: 50px 20px;
}

.blusas-extra-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

.blusas-extra-item {
  background: #fff;
  padding: 25px 15px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.blusas-extra-item h4 {
  margin: 10px 0 6px;
  color: #c9a24d;
  font-size: 16px;
}

.blusas-extra-item p {
  font-size: 14px;
  color: #555;
}
.blusas-extra-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .blusas-extra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .blusas-extra-grid {
    grid-template-columns: 1fr;
  }
}
.blusas-extra-titulo {
  text-align: center;
  font-size: 32px;
  color: #000;
  margin-bottom: 40px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .blusas-extra-titulo {
    font-size: 32px;
    margin-bottom: 25px;

  }
}
.blusas-cta-final {
  width: 100%;
  height:auto;
  background: linear-gradient(180deg, #c9a24d, #f3de8a);
  color: #fff;
  text-align: center;
  padding: 60px 20px;


}

.blusas-cta-final h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}

.blusas-cta-final p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.blusas-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #fff;
  color: #c9a24d;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blusas-cta-btn:hover {
  background: #f1ecff;
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .blusas-cta-final h2 {
    font-size: 22px;
  }

  .blusas-cta-final p {
    font-size: 14px;
  }

  .blusas-cta-btn {
    padding: 12px 26px;
    font-size: 14px;
  }
}
.kyrosch-footer {
  background: #1e1e1e;
  color: #ccc;
  padding: 50px 20px 20px;
  font-size: 14px;
}

.kyrosch-footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.kyrosch-footer-col h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.kyrosch-footer-col h4 {
  color: #fff;
  margin-bottom: 10px;
}

.kyrosch-footer-col p {
  line-height: 1.6;
}

.kyrosch-footer-col ul {
  list-style: none;
  padding: 0;
}

.kyrosch-footer-col ul li {
  margin-bottom: 8px;
}

.kyrosch-footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.kyrosch-footer-col ul li a:hover {
  color: #fff;
}

.kyrosch-footer-copy {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  color: #777;
  font-size: 13px;
}
@media (max-width: 768px) {
  .kyrosch-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .kyrosch-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.barra-envios-novedades {
  display: flex;
  background-color: #0b132b;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.envios-texto-novedades {
 color: #ffffff;
 font-weight: 600;

}
 
.novedades-imagen img {
  max-width: 100%;
}
@media (max-width: 768px) {
  .envios-texto-novedades{
   font-size: 11px;
  }
}
.titulo-novedades {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column;
  background-color: #f1ede6;
}
.titulo-novedades h1{
  font-size: 40px;
  text-align: center;
  color: #111;
  font-weight: bold;
  top: 20px;
  margin: 20px 0;
}
.titulo-novedades h2{
  font-size: 20px;
  text-align: center;
  color: #424242;
}

.titulo-novedades-seccion {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background: #f1ede6;
}
@media (max-width: 768px) {
  .titulo-novedades h1 {
    font-size: 30px;
    padding: 10px 10px;
  }
  .titulo-novedades h2{
    font-size: 15px;
    padding: 10px 10px;
  }

}


.header{
  position:fixed;
  top:0; left:0;
  width:100%;
  height:var(--header-h);
  background:#fff;
  z-index:1000;
  display:flex;
  align-items:center;
  padding:0 40px;
}

.header-container{
  width:100%;
  height: 80px;
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo{ width:200px; height:auto; display:block; }

.buscador{
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(0,0,0,0.06);
  border-radius:999px;
  padding:7px 12px;
  min-width:340px;
}
.buscador input{
  border:0;
  outline:none;
  background:transparent;
  width:100%;
  font-size:14px;
}
.buscador button{
  border:0;
  background:transparent;
  cursor:pointer;
  font-size:18px;
}

/* DESKTOP MENU */
.nav-desktop{ display:block; }
.menu-desktop{
  list-style:none;
  display:flex;
  gap:22px;
  align-items:center;
}
.menu-desktop a{
  text-decoration:none;
  color:#000;
  font-weight:500;
  position:relative;
  padding:8px 4px;
}
.menu-desktop a::after{
  content:"";
  position:absolute;
  left:0; bottom:2px;
  width:0;
  height:2px;
  background:var(--accent);
  transition:width .25s ease;
}
.menu-desktop a:hover::after{ width:100%; }

/* Submenu desktop */
.has-submenu{ position:relative; }
.submenu{
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  list-style:none;
  padding:10px;
  border-radius:12px;
  box-shadow:0 18px 40px rgba(0,0,0,0.15);
  min-width:190px;
  display:none;
}
.has-submenu:hover .submenu{ display:block; }
.submenu li a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
}
.submenu li a:hover{
  background:rgba(0,0,0,0.06);
}

/* Botones móvil */
.header-right{ display:none; gap:5px; align-items:center; }
.mobile-menu-btn,
.mobile-search-btn{
  border:0;
  background:transparent;
  font-size:24px;
  cursor:pointer;
  margin-right: 10px;
}

/* Overlay + panel móvil */
.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.45);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
  z-index:999;
}
.menu-overlay.is-open{
  opacity:1;
  pointer-events:auto;
}

.menu-mobile{
  position:fixed;
  top:0;
  right:-360px;
  width:min(360px, 92vw);
  height:100vh;
  background:#fff;
  z-index:1000;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  transition:right .28s ease;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}
.menu-mobile.is-open{ right:0; }

.menu-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:10px;
  border-bottom:1px solid rgba(0,0,0,0.08);
  margin-bottom:6px;
}
.menu-title{ font-weight:800; letter-spacing:.5px; }
.menu-close{
  border:0;
  background:transparent;
  font-size:22px;
  cursor:pointer;
}

.m-link{
  text-decoration:none;
  color:#000;
  padding:12px 12px;
  border-radius:12px;
  background:rgba(0,0,0,0.03);
}
.m-link:active{ transform:scale(.98); }

.m-subbtn{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border:0;
  background:rgba(0,0,0,0.03);
  padding:12px 12px;
  border-radius:12px;
  font-weight:650;
  cursor:pointer;
}
.chev{ transition:transform .2s ease; }
.m-subbtn[aria-expanded="true"] .chev{ transform:rotate(180deg); }

.m-sub{
  display:none;
  padding:8px 10px 12px;
  margin-top:-6px;
  border-left:2px solid var(--gold);
  border-radius:10px;
}
.m-sub.is-open{ display:block; }
.m-sub a{
  display:block;
  text-decoration:none;
  color:#222;
  padding:10px 10px;
  border-radius:10px;
}
.m-sub a:hover{ background:rgba(0,0,0,0.05); }

.mobile-search{
  display:none;
  padding:12px;
  background:rgba(0,0,0,0.03);
  border-radius:12px;
}
.mobile-search.is-open{ display:block; }
.mobile-search input{
  width:100%;
  border:0;
  outline:none;
  background:#fff;
  padding:12px;
  border-radius:10px;
}

/* Bloqueo scroll cuando menú abierto */
html.no-scroll, body.no-scroll{
  overflow:hidden !important;
  height:100%;
}

/* MOBILE */
@media (max-width:768px){
  :root{ --header-h:65px; }
  .header{ padding:0 14px; }
  .logo{ width:140px; }

  .buscador{ display:none; }
  .nav-desktop{ display:none; }
  .header-right{ display:flex; }
}
.seccion-contactos {
  display: flex;
  width: 100%;
  padding: 60px 30px;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
  background: linear-gradient(180deg, #f1e4cd, #f1ede6);
}
.seccion-contactos-texto {
  width: 100%;
  text-align: left;
  margin-left: 40px;
}
.seccion-contactos-texto h1 {
  font-size: 40px;
  color: #c9a24d;
  margin-bottom: 20px;
  font-weight: 900;
}
.seccion-contactos-texto h2 {
  font-size: 25px;
  color: #000000;
  margin-bottom: 30px;
}
.seccion-contactos-texto p {
  font-size: 17px;
  color: #555;
}
.seccion-contactos-img {
  width: 100%;
  text-align: right;
  margin-right: 40px;
}
.seccion-contactos-img img {
  border-radius: 25px;
}
.seccion-contactos-img img:hover {
  transform: scale(1.025);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .seccion-contactos {
    padding: 40px 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .seccion-contactos-texto {
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-bottom: 40px;
  }
  .seccion-contactos-texto h1 {
    font-size: 30px;
  }
  .seccion-contactos-texto h2 {
    font-size: 20px;
  }
  .seccion-contactos-texto p {
    font-size: 14px;
  }
  .seccion-contactos-img {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .seccion-contactos-img img {
    width: 100%;
    height: auto;
  }

}
.container-ofertas {
  width: 100%;
  padding: 60px 30px;
  background: #f1ede6;
}
.grind-titulo {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
.grind-titulo h2 {
  font-size: 35px;
  color: #000;
  margin-bottom: 20px;
}
.ofertas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.ofertas-card {
  padding: 10px 10px;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.ofertas-card:hover {
  transform: translateY(-6px);
}
.ofertas-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 25px;
  transition: transform 1.2s ease;
}
.ofertas-card h3 { 
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}
.precio-real {
  font-size: 18px;
  color: #cf4040;
  font-weight: bold;
  text-decoration: line-through;

}
.precio-oferta {
  font-size: 18px;
  color: #c9a24d;
  font-weight: bold;
  margin-bottom: 5px;
}
.detalles {
  font-size: 17px;
  color: #555;
  font-style: oblique;
}
.detalles span {
  margin-bottom: 10px;
  font-size: 17px;
  color: #000000;
  font-weight: 700;
}
.ofertas-btn {
  display: flex;
  padding: 12px 30px;
  background: #c9a24d;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  margin-top: 20px;
  text-align: center;
  justify-content: center;
}
.ofertas-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #e6c55a, #f3de8a);
}
/* =========================
   KYROSCH CONTACT - BOUTIQUE
   Colores:
   Dorado: #c9a24d
   Crema:  #f6f4ef
========================= */
.ky-contact{
  --gold:#c9a24d;
  --cream:#f6f4ef;
  --ink:#0f0f12;
  --soft: rgba(0,0,0,.08);
  --soft2: rgba(0,0,0,.12);
  --card: #ffffff;
  --radius: 18px;
  background: var(--cream);
  color: var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ===== HERO ===== */
.kyc-hero{
  padding: 72px 8% 54px;
  background:
    radial-gradient(700px 220px at 50% 0%, rgba(201,162,77,.25), transparent 65%),
    linear-gradient(180deg, #ffffff, var(--cream));
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.kyc-hero-inner{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.kyc-hero-badge{
  display:inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201,162,77,.16);
  border: 1px solid rgba(201,162,77,.35);
  color: #6e5316;
  font-weight: 700;
  letter-spacing: .3px;
  font-size: 12px;
}

.kyc-hero h1{
  margin: 14px 0 10px;
  font-size: 44px;
  letter-spacing: -.6px;
  line-height: 1.05;
}

.kyc-hero p{
  max-width: 820px;
  margin: 0 auto;
  opacity: .82;
  line-height: 1.7;
  font-size: 16px;
}

.kyc-hero-actions{
  margin-top: 26px;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap:wrap;
}

.kyc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 800;
  letter-spacing:.2px;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}

.kyc-btn-gold{
  background: var(--gold);
  color: #111;
  box-shadow: 0 12px 28px rgba(201,162,77,.28);
}

.kyc-btn-gold:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(201,162,77,.34);
}

.kyc-btn-ghost{
  background: rgba(255,255,255,.65);
  color: #111;
  border: 1px solid rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
}

.kyc-btn-ghost:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

.kyc-trust{
  margin-top: 24px;
  display:flex;
  justify-content:center;
  gap: 14px;
  flex-wrap:wrap;
}

.kyc-trust-item{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 13px;
  opacity: .92;
}

/* ===== CARDS ===== */
.kyc-cards{
  padding: 36px 8% 20px;
}

.kyc-cards-inner{
  max-width: 1100px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.kyc-card{
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  padding: 20px 18px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow:hidden;
}

.kyc-card::before{
  content:"";
  position:absolute;
  inset: -40px -40px auto -40px;
  height: 90px;
  background: radial-gradient(120px 60px at 30% 40%, rgba(201,162,77,.35), transparent 70%);
  pointer-events:none;
}

.kyc-card:hover{
  transform: translateY(-6px);
  border-color: rgba(201,162,77,.35);
  box-shadow: 0 18px 42px rgba(0,0,0,.10);
}

.kyc-card-top{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}

.kyc-ico{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(201,162,77,.18);
  border: 1px solid rgba(201,162,77,.35);
  font-size: 20px;
}

.kyc-card h3{
  margin:0;
  font-size: 18px;
  letter-spacing:-.2px;
}

.kyc-card p{
  margin: 0 0 12px;
  opacity:.78;
  line-height: 1.5;
  font-size: 14px;
}

.kyc-link-btn {
  display:inline-block;
  text-decoration:none;
  font-weight: 900;
  color: #111;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(201,162,77,.22);
  border: 1px solid rgba(201,162,77,.28);
  transition: transform .2s
}
.kyc-link-btn:hover{
  transform: translateY(-2px);
  background: rgba(201,162,77,.32);
}

/* ===== FORM WRAP ===== */
.kyc-form-wrap{
  padding: 42px 8% 64px;
}

.kyc-form-inner{
  max-width: 1100px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
  align-items:start;
}

.kyc-form-card{
  background: var(--card);
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 44px rgba(0,0,0,.08);
  padding: 24px;
  position: relative;
  overflow:hidden;
}

.kyc-form-card::after{
  content:"";
  position:absolute;
  inset:auto -40px -50px -40px;
  height: 160px;
  background: radial-gradient(240px 120px at 50% 30%, rgba(201,162,77,.24), transparent 70%);
  pointer-events:none;
}

.kyc-form-head h2{
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing:-.3px;
}

.kyc-form-head p{
  margin: 0 0 18px;
  opacity:.78;
  line-height: 1.6;
}

.kyc-form{
  display:flex;
  flex-direction:column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.kyc-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.kyc-field label{
  display:block;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(0,0,0,.80);
}

.kyc-field input,
.kyc-field select,
.kyc-field textarea{
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(246,244,239,.60);
  outline:none;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.kyc-field textarea{
  min-height: 130px;
  resize: vertical;
}

.kyc-field input:focus,
.kyc-field select:focus,
.kyc-field textarea:focus{
  border-color: rgba(201,162,77,.65);
  box-shadow: 0 0 0 4px rgba(201,162,77,.18);
  transform: translateY(-1px);
}

/* SUBMIT */
.kyc-submit-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-top: 6px;
  flex-wrap:wrap;
}

.kyc-submit{
  border:none;
  background: var(--gold);
  color:#111;
  font-weight: 950;
  padding: 14px 20px;
  border-radius: 999px;
  cursor:pointer;
  letter-spacing:.2px;
  box-shadow: 0 12px 28px rgba(201,162,77,.26);
  transition: transform .25s, box-shadow .25s;
}

.kyc-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(201,162,77,.34);
}

.kyc-mini-note{
  font-size: 12px;
  opacity: .70;
  font-weight: 700;
}

/* ===== ASIDE ===== */
.kyc-aside-card{
  background: #121216;
  color: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
  position: sticky;
  top: 90px;
  overflow:hidden;
}

.kyc-aside-card::before{
  content:"";
  position:absolute;
  inset: -60px -60px auto -60px;
  height: 160px;
  background: radial-gradient(260px 120px at 30% 40%, rgba(201,162,77,.30), transparent 70%);
  pointer-events:none;
}

.kyc-aside-card h3{
  margin: 0 0 10px;
  color: var(--gold);
  letter-spacing:.4px;
}

.kyc-aside-card ul{
  margin: 0;
  padding-left: 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  opacity: .92;
  position: relative;
  z-index: 1;
}

.kyc-divider{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 16px 0;
}

.kyc-contact-mini{
  display:grid;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.kyc-mini-title{
  font-weight: 900;
  font-size: 12px;
  color: rgba(201,162,77,.92);
}

.kyc-mini-text{
  opacity:.86;
  font-weight: 650;
}

/* Whats button glow */
.kyc-whats-glow{
  margin-top: 16px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  font-weight: 950;
  padding: 14px 16px;
  border-radius: 999px;
  color:#111;
  background: var(--gold);
  box-shadow:
    0 18px 44px rgba(201,162,77,.28),
    0 0 0 0 rgba(201,162,77,.40);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  z-index: 1;
}

.kyc-whats-glow:hover{
  transform: translateY(-2px);
  box-shadow:
    0 22px 52px rgba(201,162,77,.34),
    0 0 0 6px rgba(201,162,77,.12);
}

/* ===== BOTTOM ===== */
.kyc-bottom{
  padding: 16px 8%;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,.06);
}

.kyc-bottom-inner{
  max-width: 1100px;
  margin: 0 auto;
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap:wrap;
  opacity:.78;
  font-weight: 700;
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .kyc-cards-inner{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .kyc-form-inner{
    grid-template-columns: 1fr;
  }
  .kyc-aside-card{
    position: relative;
    top: auto;
  }
}

@media (max-width: 520px){
  .kyc-hero{
    padding: 62px 6% 44px;
  }
  .kyc-hero h1{
    font-size: 34px;
  }
  .kyc-cards{
    padding: 28px 6% 10px;
  }
  .kyc-cards-inner{
    grid-template-columns: 1fr;
  }
  .kyc-form-wrap{
    padding: 32px 6% 54px;
  }
  .kyc-row{
    grid-template-columns: 1fr;
  }
}
/* ===== CARRITO (KYROSCH) ===== */
.cart-fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  border: 0;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 999px;
  background: #111;
  color: #f6f4ef;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  font-weight: 700;
  display:flex;
  gap:10px;
  align-items:center;
}

.cart-count{
  display:inline-flex;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: #c9a24d;
  color: #111;
  align-items:center;
  justify-content:center;
  font-size: 14px;
}

.cart-overlay{
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
}

.cart-drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(420px, 92vw);
  z-index: 9998;
  background: #0f1114;
  color: #f6f4ef;
  transform: translateX(110%);
  transition: transform .25s ease;
  box-shadow: -20px 0 50px rgba(0,0,0,.35);
  display:flex;
  flex-direction:column;
}

.cart-drawer.open{ transform: translateX(0); }

.cart-head{
  padding: 18px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cart-head h3{ margin:0; font-size: 18px; letter-spacing:.2px; }

.cart-close{
  border:0;
  background: rgba(255,255,255,.06);
  color:#f6f4ef;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor:pointer;
}

.cart-items{
  padding: 14px 16px;
  overflow:auto;
  flex:1;
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.cart-item{
  display:grid;
  grid-template-columns: 64px 1fr auto;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,162,77,.18);
}

.cart-item img{
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
}

.cart-item h4{
  margin:0 0 4px;
  font-size: 14px;
  line-height: 1.2;
}

.cart-item .price{
  font-weight: 700;
  color: #c9a24d;
  font-size: 14px;
}

.cart-qty{
  display:flex;
  align-items:center;
  gap: 6px;
  margin-top: 8px;
}

.cart-qty button{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 0;
  cursor:pointer;
  background: rgba(255,255,255,.08);
  color:#f6f4ef;
  font-weight: 800;
}

.cart-qty span{ min-width: 18px; text-align:center; }

.cart-remove{
  border:0;
  cursor:pointer;
  background: transparent;
  color: rgba(246,244,239,.8);
  font-size: 18px;
  padding: 6px 8px;
}

.cart-foot{
  padding: 14px 16px 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.cart-total{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 12px;
}

.cart-actions{
  display:flex;
  gap: 10px;
}

.cart-clear{
  flex: 1;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color:#f6f4ef;
  cursor:pointer;
  font-weight: 700;
}

.cart-send{
  flex: 1.2;
  padding: 12px 12px;
  border-radius: 14px;
  border: 0;
  background: #c9a24d;
  color:#111;
  cursor:pointer;
  font-weight: 900;
}

.cart-note{
  margin: 10px 0 0;
  font-size: 12px;
  opacity: .75;
}

/* Botón agregar dentro de cards */
.btn-add-cart{
  display: inline-block;
  margin-bottom: 15px;
  padding: 10px 22px;
  background: #c9a24d;
  color: #fff;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition:0.3s;
}

.btn-add-cart:hover {
  background:linear-gradient(180deg, #f1d77a, #d4b24c)
}