/* CONFIGURACIÓN GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: white;
    color: #111111;
}

/* ENCABEZADO */
    header {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
padding: 2px;
background: #ffd7f0; 
border-bottom: 1px solid #e5e5e5;
box-shadow: 0 2px 10px rgba(43, 34, 34, 0.05);
}

.logo {
    width: 90px;
    height: 80px;

    object-fit: cover;

    border-radius: 50%;

    border: 4px solid white;
}

/* MENÚ */
nav ul {
list-style: none;
display: flex;
justify-content: center;
gap: 35px;
margin-top: 8px;
}

nav ul li a {
    text-decoration: none;
    color: #111111;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff3399;
}

.cart-icon {
    background-color: #ffd7f0;
    color: #ff3399 !important;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
}

.cart-icon:hover {
    background-color: #ff3399;
}

/* SECCIÓN PRODUCTOS */
main {
    padding: 40px 0%;
}

main h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    letter-spacing: 1px;
}

/* GRID PRODUCTOS */
.productos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding:20px;
}

/* TARJETA PRODUCTO */
.producto-card {
    background-color: #ffffff;
    border: 2px solid #ff1493;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.15);
}

.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 51, 153, 0.1);
}

/* IMÁGENES */
.producto-img {
    width: 160px;
    height: 210px;
    object-fit: contain;
    border-radius: 15px;
    background-color: white;
    transition: transform 0.3s;
}

.producto-img:hover {
    transform: scale(1.17);
}

/* TÍTULOS */
.producto-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #111111;
}

/* PRECIO */
.precio {
    color: #ff1493;
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 15px;
}

/* BOTÓN */
.btn-carrito {
    background-color: #111111;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-carrito:hover {
    background-color: #ec97dd;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background-color: #111111;
    color: #ffffff;
    margin-top: 40px;
    font-size: 14px;
}

.hearts {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    top: 0;
    left: 0;
    overflow: hidden;
}

.hearts span {
    position: absolute;
    color: #ff1493;
    font-size: 60px;
    animation: flotar 90s linear infinite;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.4);
}

/* POSICIONES DIFERENTES */
.hearts span:nth-child(1) {
    left: 10%;
    animation-duration: 8s;
}

.hearts span:nth-child(2) {
    left: 30%;
    animation-duration: 12s;
}

.hearts span:nth-child(3) {
    left: 50%;
    animation-duration: 10s;
}

.hearts span:nth-child(4) {
    left: 70%;
    animation-duration: 14s;
}

.hearts span:nth-child(5) {
    left: 90%;
    animation-duration: 9s;
}

/* ANIMACIÓN */
@keyframes flotar {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-120vh);
        opacity: 0;
    }
}

/* CATEGORÍAS */
.categorias {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.categorias button {
    width: 220px;
    height: 180px;

    background: white;
    border: 2px solid #ffd1e8;
    border-radius: 25px;

    color: #111111;
    font-size: 22px;
    font-weight: bold;

    cursor: pointer;

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

    padding-bottom: 20px;

    transition: all 0.4s ease;

    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.12);

    position: relative;
    overflow: hidden;
}

.categorias button:hover {
    transform: translateY(-8px);

    border: 3px solid #ff1493;

    box-shadow:
    0 0 15px rgba(255,20,147,0.3),
    0 0 30px rgba(255,20,147,0.2);

    color: #ff1493;
}

.titulo-coleccion {
    text-align: center;
    font-size: 52px;
    font-weight: 900;
    font-style: italic;
    color: #111111;

    -webkit-text-stroke: 1.5px #ff1493;

    margin-bottom: 45px;
    letter-spacing: 2px;

    text-shadow:
        2px 2px 10px rgba(255, 20, 147, 0.2);

    font-family: 'Trebuchet MS', cursive;
}

.frase-final {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    font-style: italic;
    color: #111111;

    margin-top: 90px;
    margin-bottom: 40px;
    padding: 0 25px;

    text-shadow: 2px 2px 10px rgba(255, 20, 147, 0.1);

    line-height: 1.5;
}

/* DOS IMÁGENES DEL PRODUCTO */
.imagenes-producto {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;

    margin-bottom: 15px;
}

.imagenes-producto img {
    width: 160px;
    height: 210px;
    object-fit: contain;
    border-radius: 15px;
    background-color: white; 
}

/* TALLAS */
.tallas {
    display: inline-block;
    background-color: #ffd1e8;
    color: #111111;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}

.categorias a {
    text-decoration: none;
}

.volver {
    background: #ff1493;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    margin: 20px;
}

.volver:hover {
    background: #111111;
}

.btn-whatsapp {
    background: #111111;
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

.btn-whatsapp:hover {
    background-color: #ec97dd;

}

.volver {
    background-color: white;
    color: black;
    border: 2px solid black;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    margin: 20px;
}

.volver:hover {
    background-color: #ff1493;
    color: white;
}

.banner-principal {
text-align: center;
background: #fff5f8;
color: #111111;
padding: 15px;
border-radius: 25px;
margin-bottom: 40px;
border: 2px solid #ffd1e8;
}

.banner-principal h1 {
font-size: 28px;
margin-bottom: 10px;
color: #2d2d2d;
letter-spacing: 4px;
font-weight: 700;
}

.banner-principal p {
font-size: 18px;
color: #555555;
}

.contacto,
.beneficios {
background: white;
padding: 30px;
margin: 30px auto;
border-radius: 20px;
max-width: 900px;
text-align: center;
box-shadow: 0 8px 20px rgba(255, 20, 147, 0.1);
}

.contacto h2,
.beneficios h2 {
color: #ff1493;
margin-bottom: 20px;
}

.contacto p,
.beneficios p {
margin: 10px 0;
font-size: 15px;
}

.frase-logo {
font-size: 15px;
color: #555555;
margin-top: 2px;
font-weight: 500;
letter-spacing: 1px;
}

.instagram,
.comentarios,
.ofertas {
background: white;
padding: 30px;
margin: 30px auto;
border-radius: 20px;
max-width: 900px;
text-align: center;
box-shadow: 0 8px 20px rgba(255, 20, 147, 0.1);
}

.instagram h2,
.comentarios h2,
.ofertas h2 {
color: #ff1493;
margin-bottom: 20px;
}

.instagram a {
text-decoration: none;
color: #111111;
font-size: 22px;
font-weight: bold;
}

.comentarios p,
.ofertas p {
margin: 12px 0;
font-size: 15px;
}

.logo-container {
text-align: center;
}

.titulo-brillante {
    animation: brillo 2s infinite;
}

.texto-brillante {
    animation: brillo 2s infinite;
}

@keyframes brillo {
    0% {
        text-shadow: 0 0 5px #fff;
    }

    50% {
        text-shadow:
        0 0 10px #fff,
        0 0 20px #ff69b4,
        0 0 30px #ff69b4;
    }

    100% {
        text-shadow: 0 0 5px #fff;
    }
}

.categoria-imagen{
    width:210px;
    height:190px;

    background:white;
    border:2px solid #ffd1e8;
    border-radius:25px;

    overflow:hidden;
    cursor:pointer;

    display:flex;
    flex-direction:column;

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

    gap:10px;

}

.categoria-imagen:hover{

    transform: translateY(-8px);

    border: 3px solid #ff1493;

    box-shadow:
    0 0 15px rgba(255,20,147,0.3),
    0 0 30px rgba(255,20,147,0.2);

}

.categoria-imagen span{
    color:#111111;
    transition:0.4s;
}

.categoria-imagen:hover span{
    color:#ff1493;
}

.categoria-imagen img{
    width:100px;
    height: 100px;
    object-fit:contain;
    
    margin-top: 15px;
}

.categoria-imagen span{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    font-size:22px;
    font-weight:bold;

}
.categoria-imagen-shorts{
    width:220px;
    height:180px;

    background:white;
    border:2px solid #ffd1e8;
    border-radius:25px;

    overflow:hidden;
    cursor:pointer;

    display:flex;
    flex-direction:column;

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

    gap:10px;
}

.categoria-imagen-shorts:hover{

    transform: translateY(-8px);

    border: 3px solid #ff1493;

    box-shadow:
    0 0 15px rgba(255,20,147,0.3),
    0 0 30px rgba(255,20,147,0.2);

}

.categoria-imagen-shorts span{
    color:#111111;
    transition:0.4s;
}

.categoria-imagen-shorts:hover span{
    color:#ff1493;
}

.categoria-imagen-shorts img{
    width:100px;
    height:100px;
    object-fit:contain;
}

.categoria-banner{

    width:95%;
    max-width:1000px;
    height:180px;

    margin:5px auto;

    background:#ffeaf7;

    border:3px solid #ff1493;
    border-radius:30px;

    overflow:hidden;
    cursor:pointer;

    display:flex;
    align-items:center;

    transition:0.4s;
}

.categoria-banner:hover{

    transform:translateY(-8px);

    box-shadow:
    0 0 15px rgba(255,20,147,0.3),
    0 0 30px rgba(255,20,147,0.2);
}

.banner-foto{

    width:50%;
    height:100%;
}

.banner-foto img{

    width:100%;
    height:100%;

    object-fit:contain;
}

.banner-texto{

    width:50%;
    height:100%;

    display:flex;
    flex-direction:column;

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

    gap:15px;

    padding-top:20px;

    box-sizing:border-box;
}
.banner-texto button{
    align-self:center;
    height:auto;

}
.banner-texto h2{

    color:#111111;

    font-size:30px;

    font-weight:bold;

    margin:0;

    transition:0.4s;
}
.categoria-banner:hover .banner-texto h2{
    color:#ff1493;
}

.banner-texto button{

    background:#ff1493;

    color:white;

    border:none;

    padding:5px 20px;

    border-radius:10px;

    font-size:15px;

    font-weight:bold;

}

.banner-texto button{

    background:#ff1493;

    color:white;

    border:none;

    padding:5px 20px;

    border-radius:10px;

    font-size:15px;

    font-weight:bold;
}

.footer-vibe{ 
    background:#ffd7f0;

    display:flex;
    justify-content:space-between;

    align-items: flex-start;
    gap:50px;
    padding:40px 80px;
    margin-top:50px;
}

.footer-logo{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}
   

.footer-logo img{
    width:100px;
    height:90px;
    
    border-radius:50%;
    object-fit:cover;

    margin-bottom:20px;
}

.footer-contenido{
    color:#111111;
    flex:1;
    text-align:left;
}
  
.footer-contenido h3{
    color:#ff1493;
    margin-bottom:15px;
    font-size:28px;
}

.footer-contenido p{
    margin:12px 0;
    font-size:18px;
    color:#111111;
}

.footer-contenido a{
    text-decoration:none;
    color:#111111;
    
}

.footer-contenido a:hover{
    color:#ff1493;
}

.titulo-redes{
    color:#ff1493;

    font-size:14px;
    font-weight:bold;
}

.fa-instagram,
.fa-brands{
    color:black;
    font-size:20px;
    margin-right:8px;
}

.instagram-footer{
    margin-top:15px;
}

.footer-logo a{
    color: #111111 !important;
    text-decoration: none !important;
}

.footer-logo a:hover{
    color: #111111 !important;
    text-decoration: none !important;
}

.footer-logo p{
    color: #111111;
}

.fa-whatsapp{
    color:#111111;
    font-size:24px;
    margin-right:8px;
}

.menu-contacto > a{
    text-decoration:none;
    color:#111111;
    font-size:18px;
    font-weight:bold;
}

.menu-contacto{
    position:relative;
    display:inline-block;
}

.menu-contacto > a:hover{
    color:#ff1493;
}

.submenu-contacto{
    display:none;

    position:absolute;

    top:100%;
    left:0;

    background:white;

    border:2px solid #ff1493;
    border-radius:15px;

    min-width:180px;

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

    z-index:999;
}

.submenu-contacto a{
    display:block;

    padding:12px;

    color:#111111;

    text-decoration:none;

    font-weight:bold;
}

.submenu-contacto a:hover{
    background:#ffeaf7;
    color:#ff1493;
}

.menu-contacto:hover .submenu-contacto{
    display:block;
}

.carrito-superior{
    position: fixed;
    top: 10px;
    right: 10px;
    background: white;
    border: 2px solid #ff1493;
    border-radius: 10px;
    padding: 2px 5px;
    font-size: 11px;

    z-index: 9999;
}

.carrito-superior{
    cursor:pointer;
}

/* PRODUCTOS DEL CARRITO */
#productos-carrito .producto-card{

    width: 500px;

    margin: 25px auto;

    padding: 25px;

    border: 2px solid #ff1493;

    border-radius: 25px;

    background: white;

    text-align: center;

    box-shadow: 0 8px 20px rgba(255,20,147,0.10);
}

/* BOTÓN ELIMINAR */
#productos-carrito .btn-carrito{

    background: white;

    color: #111111;

    border: 2px solid #ff1493;

    border-radius: 30px;

    width: 180px;

    height: 50px;

    font-weight: bold;

    margin-top: 15px;
}

#productos-carrito .btn-carrito:hover{

    background: #eed0e9;

    color: #111111;
}

/* CONTENEDOR BOTONES FINALES */
.botones-carrito{

    display:flex;

    justify-content:center;

    gap: 30px;

    margin: top 40px;

    margin-bottom: 80px;

    flex-wrap:wrap;
}

/* BOTÓN FINALIZAR Y VACIAR */
.botones-carrito button{

    width:320px;

    height:60px;

    white-space: nowrap;

    font-size: 18px;
}

.total-carrito{
    text-align:center;
    margin:30px 0;
}

.total-carrito h2{
    color:#ff1493;
    font-size:32px;
    font-weight:bold;
}

/* ========================= */
/* DISEÑO PARA CELULAR */
/* ========================= */

@media (max-width: 768px) {

    .productos-grid{
        grid-template-columns: 1fr;
        padding: 10px;
        gap: 20px;
    }

    .producto-card{
        width: 100%;
        padding: 15px;
    }

    .imagenes-producto{
        flex-wrap: wrap;
        gap: 10px;
    }

    .imagenes-producto img{
        width: 130px;
        height: 170px;
    }

    .titulo-coleccion{
        font-size: 34px;
    }

    .categoria-banner{
        height: auto;
        flex-direction: column;
        padding: 15px;
    }

    .banner-foto{
        width: 100%;
        height: 180px;
    }

    .banner-texto{
        width: 100%;
        padding: 15px;
    }

    .banner-texto h2{
        font-size: 24px;
    }

.footer-vibe{
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    padding: 40px 80px;
}

.footer-contenido{
    text-align: left;
}

    #productos-carrito .producto-card{
        width: 95%;
    }

    .botones-carrito{
        flex-direction: column;
        align-items: center;
    }

    .botones-carrito button{
        width: 90%;
    }

    nav ul{
        flex-wrap: wrap;
        gap: 15px;
    }

}






*{
    outline: 1px solid red;
}