* { margin:0; padding:0; box-sizing:border-box; } 
body { font-family:'Poppins',sans-serif; background:#fffbee; color:#2c3e3f; scroll-behavior:smooth; } 
h1,h2,h3,h4,.logo,.hero-title,.inspire-section,.testimonial-card h4 { font-family:'Playfair Display',serif; font-style:italic; font-weight:700; text-transform:none; } 

/* Barra superior animada */ 
.top-bar { background:#cbdfdd; font-size:0.85rem; padding:0.4rem 5%; overflow:hidden; } 
.top-bar-content { display:flex; justify-content:center; align-items:center; max-width:1400px; margin:0 auto; } 
.top-bar-msg { white-space:nowrap; font-weight:500; animation:slideBanner 18s linear infinite; display:inline-block; } 
@keyframes slideBanner { 
    0% { transform:translateX(60%); } 
    100% { transform:translateX(-60%); } 
} 

/* Header */ 
#header { 
    background:#fffbee; 
    position:sticky; 
    top:0; 
    z-index:1000; 
    box-shadow:0 4px 20px rgba(0,0,0,0.05);
    overflow: visible;
} 

.header-main { 
    display:flex; 
    align-items:center; 
    justify-content:space-between; 
    padding: 1.5rem 5%; 
    max-width:1400px; 
    margin:0 auto;
    position: relative;
    min-height: 120px;
} 

.header-left { 
    display:flex; 
    align-items:center; 
    gap:1rem;
    z-index: 2;
    position: relative;
} 

.header-socials a { 
    color:#5b8a8a; 
    font-size:1.2rem; 
    transition:0.3s; 
    margin-right:0.5rem; 
} 

.header-socials a:hover { 
    color:#4a7070; 
} 

.menu-icon { 
    display:none; 
    font-size:1.5rem; 
    cursor:pointer; 
    color:#5b8a8a; 
} 

.logo-centrado { 
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
} 

.logo-centrado a {
    display: inline-block;
    pointer-events: auto;
}

.logo h2 { 
    font-size:1.8rem; 
    color:#5b8a8a; 
    font-weight:700; 
} 

.logo p { 
    font-size:0.7rem; 
    letter-spacing:3px; 
    color:#8aaeb0; 
    font-family:'Poppins',sans-serif; 
    font-style:normal; 
    font-weight:400; 
} 

.logo-img { 
    height: 280px;
    width: auto; 
    display: block; 
    object-fit: contain; 
} 

.cart-icon { 
    position:relative; 
    cursor:pointer; 
    font-size:1.4rem; 
    color:#5b8a8a; 
    transition:0.3s;
    z-index: 2;
} 

.cart-icon:hover { 
    color:#4a7070; 
} 

.cart-count { 
    position:absolute; 
    top:-8px; 
    right:-10px; 
    background:#5b8a8a; 
    color:white; 
    border-radius:50%; 
    width:20px; 
    height:20px; 
    font-size:0.7rem; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    font-family:'Poppins',sans-serif; 
} 

.main-nav { 
    background:#fce7ee; 
    border-top:1px solid #d8f0cc; 
    border-bottom:1px solid #d8f0cc;
    position: relative;
    z-index: 1;
} 

.main-nav .nav-links { 
    display:flex; 
    justify-content:center; 
    gap:2rem; 
    list-style:none; 
    padding:0.7rem 1rem; 
    max-width:1400px; 
    margin:0 auto; 
} 

.nav-links a { 
    text-decoration:none; 
    color:#2c3e3f; 
    font-weight:500; 
    transition:0.3s; 
    cursor:pointer; 
    font-size:0.95rem; 
} 

.nav-links a:hover { 
    color:#5b8a8a; 
}

/* Estilos para búsqueda */
.search-nav-item {
    position: relative;
    margin-left: 0.5rem;
}
.search-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.search-icon {
    cursor: pointer;
    color: #2c3e3f;
    font-size: 1rem;
    transition: 0.3s;
}
.search-icon:hover {
    color: #5b8a8a;
}
.search-input {
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    border: 1px solid #cbdfdd;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    width: 160px;
    transition: 0.3s;
    background: #fffbee;
}
.search-input:focus {
    outline: none;
    border-color: #5b8a8a;
}

/* Location banner */ 
.location-banner { 
    background:#cbdfdd; 
    color:#2c3e3f; 
    text-align:center; 
    padding:0.6rem; 
    font-size:0.9rem;
    position: relative;
    z-index: 1;
} 

/* Hero - Altura intermedia */ 
.hero { 
    min-height: 70vh; 
    background:linear-gradient(135deg,#fce7ee 0%,#f8bdc3 100%); 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    text-align:center; 
    padding: 3rem 1rem; 
} 
.hero-content { max-width:800px; } 
.hero-badge { background:rgba(165,213,213,0.2); display:inline-block; padding:0.3rem 1rem; border-radius:50px; font-size:0.8rem; color:#5b8a8a; margin-bottom:1rem; font-family:'Poppins',sans-serif; font-style:normal; } 
.hero-title { font-size:3.5rem; margin-bottom:1rem; color:#2c3e3f; } 
.hero-highlight { color:#5b8a8a; } 
.hero-description { font-size:1.1rem; color:#4a6a6b; margin-bottom:1.8rem; } 
.hero-buttons { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; } 
.btn-primary { background:#5b8a8a; color:white; padding:0.9rem 2rem; border-radius:50px; text-decoration:none; font-weight:600; transition:0.3s; display:inline-block; cursor:pointer; border:none; } 
.btn-primary:hover { background:#4a7070; transform:scale(1.02); } 
.btn-secondary { background:transparent; border:2px solid #5b8a8a; color:#5b8a8a; padding:0.9rem 2rem; border-radius:50px; text-decoration:none; font-weight:600; transition:0.3s; cursor:pointer; } 
.btn-secondary:hover { background:rgba(91,138,138,0.1); } 

/* Nosotros */ 
.nosotros { padding:4rem 5%; background:#fffbee; text-align:center; } 
.nosotros-content { max-width:700px; margin:0 auto; } 
.nosotros .section-title { margin-bottom:1.5rem; } 
.nosotros p { line-height:1.8; color:#4a6a6b; } 

/* Productos */ 
.products { padding:2rem 5% 4rem; background:#fffbee; } 
.section-title { text-align:center; font-size:2.3rem; margin-bottom:2rem; position:relative; color:#2c3e3f; } 
.section-title:after { content:''; width:70px; height:3px; background:#5b8a8a; display:block; margin:0.8rem auto; } 
.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
    gap: 1.8rem; 
    margin-top: 1.5rem; 
} 
.product-card { background:white; border-radius:20px; overflow:hidden; box-shadow:0 10px 25px rgba(0,0,0,0.04); transition:0.3s; border:1px solid #d8f0cc; } 
.product-card:hover { transform:translateY(-6px); box-shadow:0 20px 35px rgba(0,0,0,0.08); } 
.product-img { 
    width: 100%;
    aspect-ratio: 1 / 1;
    background:#fce7ee;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    cursor:pointer;
}
.product-img img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-info { padding:1.2rem; } 
.product-title { font-size:1.2rem; font-weight:700; margin-bottom:0.3rem; color:#2c3e3f; font-family:'Playfair Display',serif; font-style:italic; cursor:pointer; } 
.product-price { color:#5b8a8a; font-weight:700; font-size:1.2rem; margin:0.4rem 0 0.8rem; } 
.product-actions { display:flex; justify-content:space-between; align-items:center; } 
.btn-whatsapp { background:#5b8a8a; color:white; border:none; padding:0.5rem 0.8rem; border-radius:40px; font-weight:600; cursor:pointer; display:flex; align-items:center; gap:0.4rem; font-size:0.9rem; transition:0.2s; } 
.btn-whatsapp:hover { background:#4a7070; } 
.btn-add-cart { background:none; border:1px solid #5b8a8a; color:#5b8a8a; width:36px; height:36px; border-radius:50%; font-size:1.3rem; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:0.2s; } 
.btn-add-cart:hover { background:#5b8a8a; color:white; } 

/* Detalle producto */ 
.producto-detalle { display:grid; grid-template-columns:1fr 1fr; gap:3rem; max-width:1200px; margin:120px auto 4rem; padding:0 2rem; } 
.galeria-wrapper { display: flex; justify-content: center; }
.producto-detalle .galeria { display: flex; align-items: center; justify-content: center; background: #fce7ee; border-radius: 30px; padding: 0; overflow: hidden; min-height: 400px; }
.producto-detalle .galeria img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 30px; }
.galeria-carousel { position: relative; width: 100%; margin: 0 auto; overflow: hidden; background: #fce7ee; border-radius: 30px; padding: 0; }
.carousel-track-container { overflow: hidden; width: 100%; }
.carousel-track { display: flex; transition: transform 0.4s ease; width: 100%; }
.carousel-slide { min-width: 100%; width: 100%; flex-shrink: 0; }
.carousel-slide img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.8); border: none; cursor: pointer; width: 40px; height: 40px; border-radius: 50%; font-size: 1.5rem; color: #5b8a8a; display: flex; align-items: center; justify-content: center; z-index: 10; transition: background 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.carousel-arrow:hover { background: white; color: #4a7070; }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }
.info-producto h1 { font-size:2.4rem; color:#2c3e3f; margin-bottom:0.5rem; } 
.categoria,.tamanio { color:#4a6a6b; margin-bottom:0.3rem; } 
.categoria { font-weight:600; color:#5b8a8a; } 
.precio { font-size:2rem; font-weight:700; color:#5b8a8a; margin:1rem 0; } 
.descripcion { margin:1.5rem 0; line-height:1.6; color:#2c3e3f; } 
.descripcion h3 { color:#5b8a8a; margin:1rem 0 0.5rem; } 
.descripcion ul { margin-left:1.5rem; } 
.acciones { display:flex; gap:1rem; margin-top:2rem; flex-wrap:wrap; } 
.acciones .btn-whatsapp { flex:1; justify-content:center; padding:0.9rem 1.5rem; } 
.btn-personalizar { flex:1; padding:0.9rem; border-radius:50px; font-weight:600; cursor:pointer; border:none; background:#a5d5d5; color:#2c3e3f; transition:0.2s; } 
.btn-personalizar:hover { background:#8ec5c5; } 
.volver { text-align:center; margin:2rem auto; } 
.seccion.oculta { display:none; } 

/* Estilos para control de cantidad y descuentos */
.cantidad-control { margin: 1rem 0; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cantidad-control label { font-weight: 600; }
.cantidad-control input { width: 80px; padding: 0.5rem; border-radius: 10px; border: 1px solid #cbdfdd; text-align: center; }
.precio-sugerido { background: #cbdfdd; padding: 0.3rem 0.8rem; border-radius: 20px; }
.descuentos-info { background: #fce7ee; padding: 0.8rem; border-radius: 15px; margin: 0.5rem 0; }

/* Carrito */ 
.cart-overlay { position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.4); z-index:2000; opacity:0; visibility:hidden; transition:0.3s; } 
.cart-overlay.active { opacity:1; visibility:visible; } 
.cart-sidebar { position:fixed; top:0; right:-400px; width:380px; max-width:85%; height:100%; background:#fffbee; box-shadow:-5px 0 30px rgba(0,0,0,0.15); z-index:2100; transition:0.3s ease; display:flex; flex-direction:column; } 
.cart-sidebar.active { right:0; } 
.cart-header { padding:1.5rem; border-bottom:1px solid #cbdfdd; display:flex; justify-content:space-between; align-items:center; } 
.cart-header h3 { font-family:'Poppins',sans-serif; font-style:normal; font-weight:600; } 
.cart-close { background:none; border:none; font-size:2rem; cursor:pointer; color:#5b8a8a; } 
.cart-items { flex:1; overflow-y:auto; padding:1.5rem; } 
.cart-item { display:flex; gap:1rem; align-items:center; margin-bottom:1.5rem; padding-bottom:1.5rem; border-bottom:1px solid #d8f0cc; } 
.cart-item-img { width:60px; height:60px; border-radius:12px; background:#fce7ee; object-fit:cover; } 
.cart-item-info { flex:1; } 
.cart-item-nombre { font-weight:600; } 
.cart-item-precio { color:#5b8a8a; font-weight:600; } 
.cart-item-quitar { background:none; border:none; color:#e07b7b; cursor:pointer; font-size:1.2rem; } 
.cart-footer { padding:1.5rem; border-top:1px solid #cbdfdd; text-align:center; } 
.cart-total { font-weight:700; font-size:1.2rem; margin-bottom:1rem; } 
.btn-cart-send { width:100%; margin-bottom:0.5rem; } 
.btn-clear-cart { background:none; border:1px solid #e07b7b; color:#e07b7b; padding:0.6rem; border-radius:30px; cursor:pointer; width:100%; font-weight:500; } 

/* Animación check volador */ 
.fly-check { position:fixed; z-index:3000; font-size:1.8rem; transition:all 0.6s cubic-bezier(0.25,0.8,0.25,1); pointer-events:none; } 

.inspire-section { background:linear-gradient(135deg,#d8f0cc,#cbdfdd); text-align:center; padding:4rem 2rem; font-size:1.7rem; color:#2c3e3f; } 
.testimonials { padding:4rem 5%; background:#fffbee; } 
.testimonial-grid { display:flex; gap:2rem; flex-wrap:wrap; justify-content:center; } 
.testimonial-card { background:white; padding:2rem; border-radius:30px; max-width:350px; box-shadow:0 8px 20px rgba(0,0,0,0.05); border:1px solid #f8bdc3; } 
.testimonial-card i { color:#5b8a8a; font-size:2rem; margin-bottom:1rem; } 
.testimonial-card p { color:#2c3e3f; } 
.testimonial-card h4 { margin-top:1rem; color:#5b8a8a; } 

footer { background:#cbdfdd; color:#2c3e3f; padding:2rem 5%; text-align:center; } 
.social-icons a { color:#5b8a8a; font-size:1.6rem; margin:0 0.8rem; transition:0.3s; } 
.social-icons a:hover { color:#4a7070; } 
.float-ws { position:fixed; bottom:25px; right:25px; background:#5b8a8a; color:white; width:60px; height:60px; border-radius:50%; text-align:center; line-height:65px; font-size:2rem; box-shadow:0 4px 15px rgba(0,0,0,0.2); z-index:100; transition:0.2s; } 
.float-ws:hover { transform:scale(1.1); } 

/* ========== RESPONSIVIDAD MEJORADA ========== */
@media(max-width:1200px) { 
    .logo-img { height: 240px; }
    .header-main { padding: 1.2rem 5%; min-height: 110px; }
    .hero { min-height: 65vh; padding: 2.5rem 1rem; }
}
@media(max-width:992px) { 
    .main-nav .nav-links { gap:1.2rem; font-size:0.9rem; } 
    .logo-img { height: 200px; }
    .header-main { padding: 1rem 5%; min-height: 100px; }
    .hero { min-height: 60vh; padding: 2rem 1rem; }
    .hero-title { font-size: 3rem; }
} 
@media(max-width:768px) { 
    /* Ocultar redes sociales en móvil */
    .header-socials {
        display: none;
    }
    .header-left {
        gap: 0.5rem;
    }
    .menu-icon {
        display: block;
        padding: 8px;
        font-size: 1.5rem;
        color: #5b8a8a;
    }
    /* Logo más grande en móviles */
    .logo-img {
        height: 120px;          /* antes 100px - aumentado */
        width: auto;
        max-width: 240px;       /* antes 200px - aumentado proporcionalmente */
    }
    .header-main {
        padding: 0.5rem 1rem;
        min-height: 130px;      /* antes 130px - sin cambios */
    }
    .cart-icon {
        padding: 8px;
        font-size: 1.3rem;
    }
    /* Menú desplegable: fondo original #fce7ee */
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fce7ee;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        z-index: 1000;
        border-top: 1px solid #d8f0cc;
    }
    .main-nav.active {
        display: block;
    }
    .main-nav .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
    }
    .main-nav .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #cbdfdd;
    }
    .main-nav .nav-links a {
        display: block;
        padding: 0.8rem 1rem;
        font-size: 1rem;
        color: #2c3e3f;
    }
    /* Buscador dentro del menú móvil */
    .search-nav-item {
        margin-top: 0;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid #cbdfdd;
    }
    .search-wrapper {
        width: 100%;
        justify-content: center;
    }
    .search-input {
        width: 100%;
        max-width: 200px;
        padding: 0.5rem;
    }
    /* Hero */
    .hero {
        min-height: 50vh;
        padding: 1.8rem 1rem;
    }
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .btn-primary, .btn-secondary {
        width: 80%;
        text-align: center;
        padding: 0.7rem;
    }
    /* Detalle producto */
    .producto-detalle {
        grid-template-columns: 1fr;
        margin-top: 100px;
        gap: 2rem;
    }
    .cart-sidebar {
        width: 85%;
    }
    .galeria-carousel {
        max-width: 100%;
        border-radius: 20px;
    }
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    .carousel-slide {
        height: 300px;
    }
    .producto-detalle .galeria {
        min-height: 300px;
    }
    /* Botones táctiles más grandes */
    .btn-add-cart {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
    .btn-whatsapp {
        padding: 0.6rem 1rem;
    }
    .product-actions {
        gap: 0.5rem;
    }
    .acciones {
        flex-direction: column;
    }
    .acciones button {
        width: 100%;
    }
    .cantidad-control {
        justify-content: space-between;
    }
}
@media(max-width: 480px) {
    .logo-img {
        height: 100px;           /* antes 80px - aumentado */
        max-width: 200px;        /* antes 180px - aumentado */
    }
    .header-main {
        padding: 0.5rem 0.8rem;
        min-height: 105px;       /* antes 105px - sin cambios */
    }
    .hero {
        min-height: 45vh;
        padding: 1.2rem 1rem;
    }
    .hero-title {
        font-size: 1.6rem;
    }
}
.oculta { display: none !important; }