/* --- NUEVAS VARIABLES GLOBALES PARA UNA PALETA PREMIUM --- */
:root {
    --primary-color-site: #F8E8E8; /* Un rosado muy pálido, casi blanco con un toque de rubor. Ideal para fondos suaves o elementos destacados sutiles. */
    --secondary-color-site: #FFFFFF; /* Blanco puro, la base para la mayoría de las secciones, da luminosidad y limpieza. */
    --accent-color-site: #DDC3B8; /* Un tono rosado-dorado muy suave, casi melocotón. Perfecto para acentos sutiles, precios, o bordes de enfoque. */
    --text-color-site: #3A3A3A; /* Gris muy oscuro, más suave que el negro puro, para el texto principal. */
    --light-text-color-site: #7C7C7C; /* Gris medio para texto secundario, descripciones y detalles. */
    --white-color-site: #FFFFFF; /* Blanco puro, asegurando su disponibilidad. */
    --error-color-site: #E74C3C; /* Rojo suave para mensajes de error o botones de eliminación, mantenido por su claridad. */

    /* Variables para el header que se adapta, con tonos iniciales sutiles y cambio a blanco puro al hacer hover */
    --header-link-color-initial: var(--text-color-site); /* Enlaces de color gris oscuro inicialmente */
    --header-logo-color-initial: var(--text-color-site); /* Logo de color gris oscuro inicialmente */
    --header-bg-initial: transparent; /* Fondo transparente inicialmente */

    --header-link-color-hover: var(--text-color-site); /* Enlaces se mantienen oscuros al hacer hover en el header */
    --header-logo-color-hover: var(--text-color-site); /* Logo se mantiene oscuro al hacer hover en el header */
    --header-bg-hover: var(--white-color-site); /* Fondo blanco puro al hacer hover */
    --header-shadow-hover: rgba(0,0,0,0.08); /* Sombra muy sutil, ligera y elegante */
}

/* === RESETEO === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    /* Usamos una fuente serif para el cuerpo, pero más refinada. 'Playfair Display' o 'Lora' son buenas opciones. */
    font-family: 'Lora', serif; /* Cambiado de Georgia */
    line-height: 1.8; /* Aumentamos el interlineado para más 'aire' */
    color: var(--text-color-site);
    background-color: #F8E8E8;
    overflow-x: hidden;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px; /* Aumentamos el padding para más espacio en los lados */
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/* === HEADER ESTILO VENUS ET FLEUR (ADAPTADO A LUJOSO) === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: transparent; /* transparente solo al inicio */
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

/* Cuando bajas, fondo sólido blanco */
header.scrolled {
    background: #ffffff; /* blanco sólido */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* sombra ligera para que se note */
}



header:hover {
    background-color: var(--header-bg-hover);
    box-shadow: 0 4px 20px var(--header-shadow-hover); /* Sombra más definida pero suave al hacer hover */
}

.header-link {
    color: var(--header-link-color-initial);
    font-size: 0.85em; /* Ligeramente más grande */
    letter-spacing: 1.2px; /* Aumentamos el letter-spacing para un look más "espaciado" y premium */
    font-weight: 500; /* Menos negrita para mayor sutileza */
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.2s ease; /* Añadimos transición a transform */
}
header:hover .header-link {
    color: var(--header-link-color-hover);
}
.header-link:hover {
    color: var(--accent-color-site); /* Cambio sutil al pasar el mouse por el enlace */
    transform: translateY(-2px); /* Pequeño levantamiento */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Alineamos verticalmente al centro */
    width: 100%;
    height: 100%; /* Ocupa toda la altura del header para centrar items */
}

.header-left {
    display: flex;
    gap: 30px; /* Más espacio entre elementos */
    flex: 1;
    padding-top: 0; /* Ya alineado por nav align-items: center */
}

.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.main-nav {
    display: flex;
    gap: 40px; /* Más espacio entre ítems del menú principal */
    margin-bottom: 0px; /* Eliminar margen inferior si se centra verticalmente */
}
.main-nav .header-link {
    font-size: 0.9em; /* Ligeramente más grande */
    letter-spacing: 1.5px; /* Más espacio entre letras */
    font-weight: 600; /* Un poco más de peso */
}

.logo {
    text-align: center;
}
.logo .header-link {
    font-family: 'Playfair Display', serif; /* Mantenemos Playfair, es excelente para logos */
    font-size: 2.2em; /* Tamaño de logo más impactante */
    font-weight: 700;
    letter-spacing: 3px; /* Más espacio en el logo */
    color: var(--header-logo-color-initial);
    transition: color 0.3s ease;
}
header:hover .logo .header-link {
    color: var(--header-logo-color-hover);
}

.header-right {
    display: flex;
    gap: 30px; /* Más espacio entre elementos */
    flex: 1;
    justify-content: flex-end;
    padding-top: 0; /* Ya alineado por nav align-items: center */
}

/* === HERO SECTION === */
.hero-section {
    background-color: var(--primary-color-site); /* Usamos el rosado pálido como fondo principal del hero */
    color: var(--text-color-site);
    text-align: center;
    padding: 140px 0 120px 0; /* Más padding para una sensación más grandiosa */
    margin-bottom: 80px; /* Más espacio antes de la siguiente sección */
}

.hero-section h1 {
    font-family: 'Playfair Display', serif; /* Título principal en serif elegante */
    font-size: 4.5em; /* Título más grande y dramático */
    margin-bottom: 25px;
    color: var(--text-color-site); /* Color de texto oscuro para el título */
    line-height: 1.2;
}
.hero-section p {
    font-size: 1.3em; /* Texto del párrafo ligeramente más grande */
    margin-bottom: 40px;
    max-width: 800px; /* Más ancho para el párrafo */
    margin-left: auto;
    margin-right: auto;
    color: var(--light-text-color-site); /* Texto de párrafo más claro */
}

/* === CONTENIDO GENERAL === */
section {
    padding: 40px 0; /* Más padding para todas las secciones */
}
section h2 {
    font-family: 'Playfair Display', serif; /* Títulos de sección en serif */
    font-size: 3.2em; /* Títulos de sección más grandes */
    text-align: center;
    margin-bottom: 60px; /* Más espacio bajo el título */
    color: var(--text-color-site); /* Color de texto oscuro para los títulos de sección */
    letter-spacing: 1px;
}

/* === PRODUCTOS === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Min-width un poco más grande */
    gap: 40px; /* Más espacio entre tarjetas */
}
.product-card {
    background-color: var(--secondary-color-site); /* Fondo blanco puro */
    border: none; /* Eliminar borde */
    border-radius: 10px; /* Bordes ligeramente más redondeados */
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px; /* Más padding inferior */
    box-shadow: 0 6px 20px rgba(0,0,0,0.06); /* Sombra más pronunciada pero suave */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.product-card:hover {
    transform: translateY(-8px); /* Elevación más notoria */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Sombra más intensa al hacer hover */
}
.product-card img {
    width: 100%;
    height: 300px; /* Altura de imagen más grande */
    object-fit: cover;
    margin-bottom: 20px; /* Más espacio bajo la imagen */
}
.product-card h3 {
    font-family: 'Playfair Display', serif; /* Título de producto en serif */
    font-size: 1.8em; /* Título de producto más grande */
    margin-bottom: 12px;
    color: var(--text-color-site); /* Título de producto oscuro */
}
.product-card p {
    font-size: 1em; /* Texto de descripción ligeramente más grande */
    color: var(--light-text-color-site);
    margin-bottom: 20px;
    padding: 0 20px;
}
.product-card .price {
    font-size: 1.6em; /* Precio más grande */
    font-weight: bold;
    color: var(--accent-color-site); /* Color de acento para el precio */
    display: block;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.add-to-cart-btn {
    background-color: var(--accent-color-site); /* Botón principal con color de acento */
    color: var(--text-color-site); /* Texto oscuro en el botón de acento para contraste */
    padding: 12px 25px; /* Más padding en el botón */
    border-radius: 50px; /* Bordes muy redondeados para un look suave */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: 600; /* Un poco más de peso */
    letter-spacing: 1px;
    text-transform: uppercase;
}
.add-to-cart-btn:hover {
    background-color: #f0d8cd; /* Un tono ligeramente más claro o saturado del acento */
    transform: translateY(-3px);
}

/* === ABOUT === */
.about-section {
    background-color: var(--primary-color-site); /* Rosado pálido para la sección about */
    text-align: center;
    padding: 100px 0; /* Más padding */
}
.about-section h2 {
    color: var(--text-color-site); /* Título oscuro */
}
.about-section p {
    max-width: 900px; /* Más ancho */
    margin: 0 auto 40px auto;
    font-size: 1.2em; /* Texto más grande */
    line-height: 1.8;
    color: var(--light-text-color-site);
}

/* === FOOTER === */
footer {
    background-color: var(--text-color-site); /* Fondo oscuro para el footer */
    color: var(--white-color-site);
    padding: 40px 0; /* Más padding */
    font-size: 0.95em;
}
.footer-columns {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px; /* Más espacio entre columnas */
    margin-bottom: 50px;
}
.footer-col {
    flex: 1;
    min-width: 220px; /* Ancho mínimo ligeramente mayor */
}
.footer-col h4 {
    font-size: 1.3em; /* Título de columna más grande */
    margin-bottom: 25px;
    color: var(--accent-color-site); /* Color de acento para títulos de columna */
    font-family: 'Playfair Display', serif; /* Títulos en serif */
}
.footer-col ul li {
    margin-bottom: 12px; /* Más espacio entre ítems de lista */
}
.footer-col ul li a {
    color: var(--secondary-color-site); /* Enlaces en blanco puro para contraste */
    transition: color 0.3s ease;
}
.footer-col ul li a:hover {
    color: var(--primary-color-site); /* Rosado pálido al hacer hover */
}
.footer-col img {
    height: 28px; /* Iconos ligeramente más grandes */
    width: 28px;
    margin-right: 20px; /* Más espacio */
    filter: invert(100%) saturate(0%) brightness(150%); /* Hace que los iconos sean blancos */
}
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15); /* Borde superior más notorio */
    color: var(--light-text-color-site);
}

/* === MEDIA QUERIES === */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    nav {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        height: auto; /* Permite que la altura del nav se ajuste */
    }
    .header-left,
    .header-right {
        justify-content: center;
        padding-top: 0;
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
    }
    .header-center {
        order: -1;
        width: 100%;
    }
    .main-nav {
        margin-bottom: 15px;
        gap: 25px;
    }
    .logo .header-link {
        font-size: 1.8em;
    }
    .header-link {
        font-size: 0.8em;
        letter-spacing: 1px;
    }
    header {
        height: auto; /* Permite que el header se ajuste si el contenido se apila */
        padding: 20px 0;
    }
    header:hover {
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    }
    .hero-section h1 {
        font-size: 3.5em;
    }
    .product-grid {
        gap: 30px;
    }
    .product-card img {
        height: 250px;
    }
    section h2 {
        font-size: 2.8em;
    }
}

@media (max-width: 768px) {
    .header-left {
        display: none; /* Mantener la ocultación para móviles */
    }
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .main-nav .header-link {
        font-size: 0.85em;
        letter-spacing: 0.8px;
    }
    .header-right {
        flex-wrap: wrap;
        gap: 15px;
    }
    .header-link {
        font-size: 0.75em;
    }
    .logo .header-link {
        font-size: 1.5em;
    }
    .hero-section {
        padding: 120px 0 80px 0;
    }
    .hero-section h1 {
        font-size: 2.5em;
    }
    .hero-section p {
        font-size: 1.1em;
    }
    section {
        padding: 60px 0;
    }
    section h2 {
        font-size: 2.2em;
        margin-bottom: 30px;
    }
    .product-card {
        padding-bottom: 25px;
    }
    .product-card img {
        height: 220px;
    }
    .product-card h3 {
        font-size: 1.6em;
    }
    .product-card .price {
        font-size: 1.4em;
    }
    .add-to-cart-btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .footer-columns {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 30px;
    }
    .footer-col {
        min-width: unset;
        width: 100%;
        text-align: center;
    }
    .footer-col ul {
        padding-left: 0;
    }
    .footer-col h4 {
        margin-bottom: 15px;
    }
    .footer-col img {
        margin: 0 10px;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .main-nav {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .header-right {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .logo .header-link {
        font-size: 1.2em;
        letter-spacing: 2px;
    }
    .header-link {
        font-size: 0.7em;
        letter-spacing: 0.5px;
    }
    .hero-section h1 {
        font-size: 2em;
    }
    .hero-section p {
        font-size: 0.9em;
    }
    section h2 {
        font-size: 1.8em;
    }
    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .product-card img {
        height: 180px;
    }
}

/* --- CSS para contact.html (Adaptado a Lujoso) --- */
.contact-section {
    padding: 100px 0; /* Más espacio */
    background-color: var(--primary-color-site); /* Fondo rosado pálido */
    text-align: center;
}

.contact-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    color: var(--text-color-site);
    margin-bottom: 30px;
}

.contact-section p {
    font-size: 1.2em;
    margin-bottom: 50px;
    color: var(--light-text-color-site);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.contact-form {
    max-width: 650px; /* Ligeramente más ancho */
    margin: 0 auto 60px auto;
    background-color: var(--secondary-color-site); /* Fondo blanco puro */
    padding: 40px; /* Más padding */
    border-radius: 12px; /* Más redondeado */
    box-shadow: 0 8px 25px rgba(0,0,0,0.08); /* Sombra más suave y extendida */
    text-align: left;
}

.contact-form label {
    font-size: 1.1em; /* Texto de etiqueta más grande */
    margin-bottom: 10px;
    color: var(--text-color-site);
    font-weight: 500; /* Menos negrita */
    letter-spacing: 0.5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px; /* Más padding en campos de input */
    margin-bottom: 25px;
    border: 1px solid #E0E0E0; /* Borde más claro y suave */
    border-radius: 8px; /* Bordes redondeados */
    font-size: 1.05em; /* Fuente ligeramente más grande */
    font-family: 'Lora', serif; /* Consistencia con la fuente del body */
    background-color: #FDFDFD; /* Fondo casi blanco para los inputs */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color-site); /* Color de acento al enfocar */
    box-shadow: 0 0 0 3px rgba(221, 195, 184, 0.3); /* Sombra suave y rosada al enfocar */
    outline: none;
}

.contact-form textarea {
    min-height: 150px; /* Altura mínima de textarea más grande */
}

.contact-form .btn {
    padding: 15px 40px; /* Más padding para el botón */
    font-size: 1.2em;
    background-color: var(--accent-color-site); /* Botón con color de acento */
    color: var(--text-color-site); /* Texto oscuro */
    border-radius: 50px; /* Más redondeado */
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 0 auto;
    display: block;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.contact-form .btn:hover {
    background-color: #f0d8cd;
    transform: translateY(-3px);
}

.contact-info {
    margin-top: 50px; /* Más espacio */
    padding-top: 40px;
    border-top: 1px solid #F0F0F0; /* Borde superior más claro */
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    color: var(--text-color-site);
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 1.05em;
    margin-bottom: 12px;
    color: var(--light-text-color-site);
}

.contact-info a {
    color: var(--accent-color-site); /* Enlaces con color de acento */
    font-weight: 600;
    text-decoration: none; /* Quitamos el subrayado por defecto */
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color-site); /* Rosado pálido al hacer hover */
    text-decoration: underline; /* Subrayado al hacer hover */
}

/* Media Queries para contact.html */
@media (max-width: 768px) {
    .contact-section h1 {
        font-size: 2.8em;
    }
    .contact-section p {
        font-size: 1.1em;
    }
    .contact-form {
        padding: 30px;
    }
    .contact-form .btn {
        width: 90%;
        padding: 12px 25px;
    }
    .contact-info h3 {
        font-size: 1.8em;
    }
}

---

/* === CSS para boutiques.html (Adaptado a Lujoso) === */
.boutiques-section {
    background-color: var(--white-color-site); /* Fondo blanco */
    text-align: center;
}

.boutiques-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    color: var(--text-color-site);
    margin-bottom: 30px;
    padding: 30px;
}

.boutiques-section p {
    font-size: 1.2em;
    margin-bottom: 60px; /* Más espacio */
    color: var(--light-text-color-site);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.boutique-card {
    background-color: var(--primary-color-site); /* Rosado pálido para las tarjetas */
    border-radius: 12px; /* Más redondeado */
    padding: 40px; /* Más padding */
    margin-bottom: 50px; /* Más espacio */
    box-shadow: 0 6px 20px rgba(0,0,0,0.06); /* Sombra más pronunciada pero suave */
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.boutique-card:hover {
    transform: translateY(-5px); /* Ligeramente levantado */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Sombra más intensa al hacer hover */
}

.boutique-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em; /* Título de tarjeta más grande */
    color: var(--text-color-site);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.8px;
}

.boutique-card p {
    font-size: 1.1em; /* Texto de párrafo más grande */
    margin-bottom: 15px;
    color: var(--light-text-color-site);
    line-height: 1.8;
    max-width: 100%;
    text-align: center;
}

.boutique-card strong {
    color: var(--accent-color-site); /* Acento para texto importante */
    font-weight: 600;
}

.map-placeholder {
    width: 100%;
    height: 450px; /* Altura más generosa para el mapa */
    background-color: #f5f5f5; /* Fondo más claro */
    margin-top: 30px;
    border: 1px solid #eee; /* Borde más claro */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text-color-site);
    font-style: italic;
    overflow: hidden;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.05); /* Sombra interna para profundidad */
}

/* Media Queries para boutiques.html */
@media (max-width: 768px) {
    .boutiques-section h1 {
        font-size: 2.8em;
    }
    .boutique-card h3 {
        font-size: 2em;
    }
    .boutique-card {
        padding: 30px;
    }
    .map-placeholder {
        height: 400px;
    }
}

---

/* === CSS para wishlist.html (Adaptado a Lujoso) === */
.wishlist-section {
    padding: 100px 0;
    background-color: var(--white-color-site);
    text-align: center;
}

.wishlist-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    color: var(--text-color-site);
    margin-bottom: 30px;
}

.wishlist-section p {
    font-size: 1.2em;
    margin-bottom: 50px;
    color: var(--light-text-color-site);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.wishlist-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Ajustes para las tarjetas de productos en la lista de deseos */
.wishlist-items .product-card {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Sombra más pronunciada que antes, pero suave */
    border-radius: 10px;
    background-color: var(--secondary-color-site); /* Blanco puro */
}

.wishlist-items .product-card .add-to-cart-btn,
.wishlist-items .product-card .secondary-btn {
    margin-top: 20px;
    margin-right: 0; /* Asegurar que no haya margen lateral aquí si están en bloques separados */
    width: calc(100% - 60px); /* Ajusta para padding de la tarjeta */
    margin-left: 30px;
    margin-right: 30px;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Estilo para el botón "Eliminar" en la wishlist */
.wishlist-items .product-card .secondary-btn.remove-from-wishlist-btn {
    background-color: var(--error-color-site); /* Rojo de error para eliminar */
    color: var(--white-color-site);
    margin-top: 10px; /* Margen para separarlo del botón de carrito */
}

.wishlist-items .product-card .secondary-btn.remove-from-wishlist-btn:hover {
    background-color: #c0392b; /* Rojo más oscuro al pasar el mouse */
}

.wishlist-items > p {
    grid-column: 1 / -1;
    font-style: italic;
    color: var(--light-text-color-site);
    font-size: 1.2em;
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    border: 1px dashed #e0e0e0; /* Borde más sutil */
    border-radius: 10px;
    background-color: var(--primary-color-site); /* Fondo rosado pálido para el mensaje de vacío */
}

.wishlist-items > p a {
    color: var(--accent-color-site);
    font-weight: bold;
    text-decoration: underline;
}

/* Media Queries para wishlist.html */
@media (max-width: 768px) {
    .wishlist-section h1 {
        font-size: 2.8em;
    }
    .wishlist-items {
        grid-template-columns: 1fr;
    }
    .wishlist-items .product-card .add-to-cart-btn,
    .wishlist-items .product-card .secondary-btn {
        width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
    }
}

---

/* === CSS para search.html (Adaptado a Lujoso) === */
.search-section {
    padding: 120px 0;
    background-color: var(--primary-color-site); /* Fondo rosado pálido */
    text-align: center;
}

.search-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    color: var(--text-color-site);
    margin-bottom: 50px;
    padding: 20px; /* Más espacio alrededor del título */
}

.search-form {
    display: flex;
    justify-content: center;
    margin-bottom: 80px; /* Más espacio */
    gap: 20px; /* Más espacio entre input y botón */
}

.search-form input[type="search"] {
    width: 65%; /* Ligeramente más ancho */
    max-width: 600px; /* Aumentamos el max-width */
    padding: 18px 25px; /* Más padding */
    border: 2px solid var(--accent-color-site); /* Borde con color de acento */
    border-radius: 50px;
    font-size: 1.2em; /* Texto más grande */
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    background-color: var(--secondary-color-site); /* Fondo blanco */
    color: var(--text-color-site);
}

.search-form input[type="search"]::placeholder {
    color: var(--light-text-color-site);
    opacity: 0.7;
}

.search-form input[type="search"]:focus {
    border-color: #f0d8cd; /* Tono de acento al enfocar */
    box-shadow: 0 0 0 4px rgba(221, 195, 184, 0.4); /* Sombra más suave y extendida */
    background-color: #FFFDFD; /* Fondo ligeramente más claro al enfocar */
}

.search-form .btn {
    padding: 18px 35px; /* Más padding */
    border-radius: 50px;
    font-size: 1.2em;
    background-color: var(--accent-color-site);
    color: var(--text-color-site);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.search-form .btn:hover {
    background-color: #f0d8cd;
    transform: translateY(-4px); /* Levantamiento más pronunciado */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.search-results h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    color: var(--text-color-site);
    margin-bottom: 40px;
    text-align: center;
}

.search-results p {
    font-size: 1.2em;
    color: var(--light-text-color-site);
    font-style: italic;
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: var(--secondary-color-site);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

/* Media Queries para search.html */
@media (max-width: 768px) {
    .search-section h1 {
        font-size: 2.8em;
    }
    .search-form {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .search-form input[type="search"] {
        width: 90%;
        padding: 15px 20px;
    }
    .search-form .btn {
        width: 80%;
        padding: 15px 30px;
    }
    .search-results h2 {
        font-size: 2.2em;
    }
}

---

/* === SECCIÓN DE INICIO DE SESIÓN (account.html) === */

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-color-site);
    background-color: var(--white-color-site);
    overflow-x: hidden;
}


.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Esto ahora funcionará correctamente */
    padding: 120px 20px 20px;
    background-color: #F8E8E8;
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: 40px;
    background-color: var(--white-color-site);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}



.login-container h1 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: var(--text-color-site);
}

.social-login {
    margin-bottom: 25px;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
    font-weight: bold;
    color: var(--text-color-site);
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.google-btn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.google-btn:hover {
    background-color: #f7f7f7;
    border-color: #aaa;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: var(--light-text-color-site);
}

.separator hr {
    flex-grow: 1;
    border: none;
    height: 1px;
    background-color: #ccc;
}

.separator span {
    padding: 0 10px;
    font-size: 0.9em;
}

.login-form .form-group {
    text-align: left;
    margin-bottom: 15px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-color-site);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.login-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.login-form input:focus {
    outline: none;
    border-color: var(--accent-color-site);
    box-shadow: 0 0 5px rgba(221, 195, 184, 0.5);
}

.login-form .forgot-password {
    display: block;
    text-align: right;
    margin-bottom: 20px;
    color: var(--light-text-color-site);
    text-decoration: none;
    font-size: 0.9em;
}

.login-form .forgot-password:hover {
    text-decoration: underline;
}

.login-form .primary-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    font-weight: bold;
    background-color: var(--primary-color-site);
    color: var(--white-color-site);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-form .primary-btn:hover {
    background-color: var(--accent-color-site);
}

.create-account-text {
    margin-top: 25px;
    font-size: 0.9em;
    color: var(--light-text-color-site);
}

.create-account-text a {
    color: var(--primary-color-site);
    text-decoration: none;
    font-weight: bold;
}

.create-account-text a:hover {
    text-decoration: underline;
}

/* Media Queries para la sección de inicio de sesión */
@media (max-width: 500px) {
    .login-container {
        padding: 30px;
        box-shadow: none;
    }
    .login-container h1 {
        font-size: 2em;
    }
    .google-btn {
        font-size: 0.9em;
    }
    .login-form .primary-btn {
        padding: 12px;
        font-size: 1em;
    }
}

---

/* === CSS para cart.html (Adaptado a Lujoso) === */
.cart-section {
    padding-top: 100px;
    background-color: #F8E8E8;
}

.cart-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    color: var(--text-color-site);
    margin-bottom: 50px;
    text-align: center;
    padding-top: 120px;
}

.cart-items {
    margin-bottom: 60px;
}

.cart-item-card {
    display: flex;
    align-items: center;
    background-color: var(--primary-color-site); /* Fondo rosado pálido para los items del carrito */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Sombra suave */
    padding: 25px; /* Más padding */
    margin-bottom: 30px;
    gap: 30px; /* Más espacio */
    position: relative; /* Para el botón de eliminar */
}

.cart-item-card img {
    width: 120px; /* Imágenes más grandes */
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* Sombra en imagen */
}

.cart-item-card .item-details {
    flex-grow: 1;
    text-align: left;
}

.cart-item-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7em; /* Título de item más grande */
    color: var(--text-color-site);
    margin-bottom: 10px;
}

.cart-item-card p {
    font-size: 1em;
    color: var(--light-text-color-site);
    margin-bottom: 8px;
}

.cart-item-card .quantity-controls label {
    font-size: 1em;
    color: var(--light-text-color-site);
    margin-right: 8px;
    font-weight: 500;
}

.cart-item-card input[type="number"] {
    width: 70px; /* Campo de cantidad más ancho */
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    text-align: center;
    background-color: var(--secondary-color-site);
    color: var(--text-color-site);
    transition: border-color 0.3s ease;
}

.cart-item-card input[type="number"]:focus {
    border-color: var(--accent-color-site);
    outline: none;
}

.cart-item-card .item-total {
    font-size: 1.8em; /* Total de item más grande */
    font-weight: bold;
    color: var(--accent-color-site);
    white-space: nowrap;
    margin-left: 20px; /* Más espacio */
}

/* El botón de eliminar en el carrito */
.cart-item-card .secondary-btn.remove-from-cart-btn {
    background-color: var(--error-color-site);
    color: var(--white-color-site);
    padding: 10px 18px; /* Más padding */
    font-size: 0.95em;
    border-radius: 50px; /* Más redondeado */
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: absolute; /* Posicionado absolutamente */
    top: 20px; /* Desde la parte superior */
    right: 20px; /* Desde la derecha */
}

.cart-item-card .secondary-btn.remove-from-cart-btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.cart-items > p {
    text-align: center;
    font-style: italic;
    color: var(--light-text-color-site);
    font-size: 1.2em;
    margin-top: 40px;
    padding: 25px;
    border: 1px dashed #e0e0e0;
    border-radius: 10px;
    background-color: var(--primary-color-site);
}

.cart-items > p a {
    color: var(--accent-color-site);
    font-weight: bold;
    text-decoration: underline;
}

/* Resumen del carrito */
.cart-summary {
    background-color: var(--text-color-site); /* Fondo gris oscuro para el resumen, elegante */
    color: var(--white-color-site);
    padding: 40px; /* Más padding */
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    max-width: 450px; /* Ancho máximo ligeramente mayor */
    margin-left: auto;
    text-align: right;
}

.cart-summary h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em; /* Título del resumen más grande */
    color: var(--white-color-site);
    margin-bottom: 25px;
    text-align: center; /* Centrar el título dentro del resumen */
}

.cart-summary p {
    display: flex;
    justify-content: space-between;
    font-size: 1.15em; /* Texto más grande */
    margin-bottom: 12px;
    color: var(--secondary-color-site); /* Blanco para contraste */
    letter-spacing: 0.5px;
}

.cart-summary h3 {
    display: flex;
    justify-content: space-between;
    font-size: 2.2em; /* Total más grande */
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.25); /* Borde superior más notorio */
    color: var(--accent-color-site);
    font-family: 'Playfair Display', serif;
}

/* Botón "Proceder al Pago" */
.cart-summary .btn {
    width: 100%;
    margin-top: 40px;
    padding: 18px; /* Más padding */
    font-size: 1.3em; /* Texto más grande */
    background-color: var(--accent-color-site);
    color: var(--text-color-site);
    font-weight: bold;
    border-radius: 50px; /* Muy redondeado */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cart-summary .btn:hover {
    background-color: #f0d8cd;
    transform: translateY(-4px);
}

.cart-summary .continue-shopping {
    display: block;
    text-align: center;
    margin-top: 25px;
    color: var(--secondary-color-site);
    text-decoration: underline;
    transition: color 0.3s ease;
    font-size: 1.05em;
}

.cart-summary .continue-shopping:hover {
    color: var(--white-color-site);
}

/* Media Queries para cart.html (reafirmando y ajustando) */
@media (max-width: 768px) {
    .cart-section h1 {
        font-size: 2.8em;
    }
    .cart-item-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px;
        gap: 15px;
    }
    .cart-item-card img {
        margin-bottom: 15px;
        width: 100px;
        height: 100px;
    }
    .cart-item-card .item-details {
        text-align: center;
    }
    .cart-item-card .secondary-btn.remove-from-cart-btn {
        position: static; /* Volver a la posición normal en móvil */
        margin-top: 15px;
    }
    .cart-item-card .item-total {
        margin-top: 15px;
        margin-left: 0;
    }
    .cart-summary {
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
        padding: 30px;
    }
    .cart-summary p, .cart-summary h3 {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .cart-summary p span, .cart-summary h3 span {
        margin-top: 5px;
    }
}

/* === carrucel === */
/* --- */
/* === BANDA DESLIZANTE DE NOMBRES (Adaptado a Lujoso) === */
.scrolling-band-container {
    width: 100%;
    overflow: hidden;
    background-color: var(--accent-color-site); /* Usamos el color de acento, o un tono más claro de primary-color-site */
    padding: 18px 0; /* Más espacio vertical */
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05); /* Sombra más sutil */
    position: relative;
    z-index: 999;
}

.scrolling-band {
    display: inline-block;
    animation: scrollText 40s linear infinite; /* Animación más lenta para un efecto más suave y elegante */
    will-change: transform;
    padding-right: 10px; /* Asegura espacio al final para la repetición */
}

.scrolling-band span {
    font-family: 'Playfair Display', serif; /* Fuente serif para los nombres */
    font-size: 1.3em; /* Tamaño ligeramente más grande */
    font-weight: bold;
    color: var(--white-color-site); /* Color blanco puro para un contraste limpio */
    margin-right: 60px; /* Más espacio entre los nombres para una lectura pausada */
    letter-spacing: 2px; /* Más espacio entre letras */
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1); /* Una pequeña sombra de texto para darle profundidad */
}

.scrolling-band-container:hover .scrolling-band {
    animation-play-state: paused;
}

@keyframes scrollText {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* === Botones (Adaptado a Lujoso) === */
/* Estilo base para botones secundarios (como "Añadir a Wishlist" o "Eliminar") */
.secondary-btn {
    background-color: var(--light-text-color-site); /* Gris suave, pero más hacia el gris cálido si el acento es rosado */
    color: var(--white-color-site);
    padding: 12px 25px; /* Más padding */
    border-radius: 50px; /* Más redondeado */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px; /* Más margen superior */
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08); /* Sombra sutil */
}

.secondary-btn:hover {
    background-color: var(--text-color-site); /* Gris oscuro al pasar el mouse */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* === Contador del Carrito en el Header === */
#cart-item-count {
    font-size: 0.9em; /* Ligeramente más grande */
    vertical-align: super;
    color: var(--accent-color-site); /* Color de acento para el contador */
    font-weight: bold;
    margin-left: -5px;
    transition: color 0.3s ease;
}

header:hover #cart-item-count {
    color: var(--text-color-site); /* Se vuelve oscuro al pasar el mouse por el header */
}

/* === Mensajes de Vacío (Carrito/Wishlist) (Adaptado a Lujoso) === */
.empty-message {
    text-align: center;
    font-style: italic;
    color: var(--light-text-color-site);
    font-size: 1.2em; /* Más grande */
    margin-top: 50px; /* Más margen superior */
    padding: 30px; /* Más padding */
    border: 1px dashed var(--primary-color-site); /* Borde punteado con color rosado pálido */
    border-radius: 10px;
    background-color: var(--secondary-color-site);
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Sombra suave */
    line-height: 1.6;
}

.empty-message a {
    color: var(--accent-color-site); /* Enlace con color de acento */
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.empty-message a:hover {
    color: var(--text-color-site);
}

/* === Estilos Específicos para wishlist.html (Reafirmando, ya ajustados arriba) === */
#wishlist-items-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

#wishlist-items-container .product-card {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background-color: var(--secondary-color-site);
    border-radius: 10px;
}

#wishlist-items-container .product-card img {
    height: 250px; /* Ajustada a un tamaño que luzca bien */
}

#wishlist-items-container .product-card .add-to-cart-btn,
#wishlist-items-container .product-card .secondary-btn {
    width: calc(100% - 60px);
    margin-left: 30px;
    margin-right: 30px;
}

#wishlist-items-container .secondary-btn.remove-from-wishlist-btn {
    background-color: var(--error-color-site);
    color: var(--white-color-site);
    margin-top: 10px;
}

#wishlist-items-container .secondary-btn.remove-from-wishlist-btn:hover {
    background-color: #c0392b;
}


/* === Estilos Específicos para cart.html (Reafirmando, ya ajustados arriba) === */
#cart-items-container {
    margin-bottom: 60px;
}

.cart-item-card {
    display: flex;
    align-items: center;
    background-color: var(--primary-color-site);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 30px;
    gap: 30px;
}

.cart-item-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-card .item-details {
    flex-grow: 1;
    text-align: left;
}

.cart-item-card h3 {
    font-size: 1.7em;
    color: var(--text-color-site);
}

.cart-item-card p {
    font-size: 1em;
    color: var(--light-text-color-site);
}

.cart-item-card .quantity-controls label {
    font-size: 1em;
    color: var(--light-text-color-site);
    margin-right: 8px;
}

.cart-item-card input[type="number"] {
    width: 70px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    text-align: center;
}

.cart-item-card .item-total {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--accent-color-site);
    white-space: nowrap;
    margin-left: 20px;
}

.cart-item-card .secondary-btn.remove-from-cart-btn {
    background-color: var(--error-color-site);
    color: var(--white-color-site);
    padding: 10px 18px;
    font-size: 0.95em;
}

.cart-item-card .secondary-btn.remove-from-cart-btn:hover {
    background-color: #c0392b;
}

.cart-summary {
    background-color: var(--text-color-site);
    color: var(--white-color-site);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    max-width: 450px;
    margin-left: auto;
    text-align: right;
}

.cart-summary h2 {
    font-size: 2.5em;
    color: var(--white-color-site);
}

.cart-summary p {
    display: flex;
    justify-content: space-between;
    font-size: 1.15em;
    margin-bottom: 12px;
    color: var(--secondary-color-site);
}

.cart-summary h3 {
    display: flex;
    justify-content: space-between;
    font-size: 2.2em;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.25);
    color: var(--accent-color-site);
}

.cart-summary .btn {
    width: 100%;
    margin-top: 40px;
    padding: 18px;
    font-size: 1.3em;
    background-color: var(--accent-color-site);
    color: var(--text-color-site);
    font-weight: bold;
}

.cart-summary .btn:hover {
    background-color: #f0d8cd;
}

.cart-summary .continue-shopping {
    display: block;
    text-align: center;
    margin-top: 25px;
    color: var(--secondary-color-site);
    text-decoration: underline;
}

.cart-summary .continue-shopping:hover {
    color: var(--white-color-site);
}

/* Media Queries para cart.html (reafirmando y ajustando) */
@media (max-width: 768px) {
    .cart-section h1 {
        font-size: 2.8em;
    }
    .cart-item-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px;
    }
    .cart-item-card img {
        margin-bottom: 15px;
    }
    .cart-item-card .item-details {
        text-align: center;
    }
    .cart-item-card .secondary-btn.remove-from-cart-btn {
        margin-top: 10px;
    }
    .cart-item-card .item-total {
        margin-top: 15px;
    }
    .cart-summary {
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }
    .cart-summary p, .cart-summary h3 {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .cart-summary p span, .cart-summary h3 span {
        margin-top: 5px;
    }
}

/* --- Ventana Emergente Personalizada (Modal) --- */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed; /* Fijo en la pantalla */
    z-index: 2000; /* Asegura que esté por encima de todo */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Permite scroll si el contenido es grande */
    background-color: rgba(0,0,0,0.6); /* Fondo semi-transparente oscuro */
    display: flex; /* Usar flexbox para centrar contenido */
    align-items: center; /* Centrar verticalmente */
    justify-content: center; /* Centrar horizontalmente */
    opacity: 0; /* Inicia invisible para la animación */
    pointer-events: none; /* No interactuable cuando está oculto */
    transition: opacity 0.3s ease-in-out; /* Transición suave para aparecer/desaparecer */
}

.modal.show {
    opacity: 1; /* Hace visible el modal */
    pointer-events: auto; /* Permite interacciones */
}

.modal-content {
    background-color: var(--white-color-site); /* Fondo blanco del contenido */
    margin: auto; /* Ayuda al centrado */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    width: 90%;
    max-width: 500px; /* Ancho máximo para el modal */
    position: relative;
    text-align: center;
    transform: translateY(-50px); /* Inicia un poco más arriba para la animación */
    transition: transform 0.3s ease-in-out; /* Transición suave para el contenido */
}

.modal.show .modal-content {
    transform: translateY(0); /* Vuelve a su posición normal al mostrarse */
}

.modal-content h2 {
    color: var(--primary-color-site);
    margin-bottom: 15px;
    font-size: 1.8em;
}

.modal-content p {
    color: var(--text-color-site);
    font-size: 1.1em;
    margin-bottom: 25px;
}

.modal-content .close-button {
    color: var(--light-text-color-site);
    font-size: 2.2em;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-content .close-button:hover,
.modal-content .close-button:focus {
    color: var(--primary-color-site);
}

.modal-content .btn,
.modal-content .secondary-btn {
    margin: 0 10px; /* Espacio entre los botones */
    padding: 12px 25px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.modal-content .btn { /* Botón principal, ej. "Ver Carrito" */
    background-color: var(--primary-color-site);
    color: var(--white-color-site);
    border: none;
}

.modal-content .btn:hover {
    background-color: var(--accent-color-site);
    transform: translateY(-2px);
}

.modal-content .secondary-btn { /* Botón secundario, ej. "Seguir Comprando" */
    background-color: var(--secondary-color-site);
    color: var(--text-color-site);
    border: 1px solid var(--light-text-color-site);
}

.modal-content .secondary-btn:hover {
    background-color: var(--light-text-color-site);
    color: var(--white-color-site);
    transform: translateY(-2px);
}

/* Media Queries para el modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
        width: 95%;
    }
    .modal-content h2 {
        font-size: 1.5em;
    }
    .modal-content p {
        font-size: 1em;
    }
    .modal-content .btn,
    .modal-content .secondary-btn {
        display: block; /* Botones apilados en móviles */
        width: 100%;
        margin: 10px 0;
    }
}

/* Contenedor para las notificaciones toast */
#toast-container {
    position: fixed; /* Fija el contenedor en la pantalla */
    top: 20px; /* Margen desde la parte superior */
    right: 20px; /* Margen desde la parte derecha */
    z-index: 1050; /* Asegura que esté por encima de la mayoría de los elementos */
    display: flex;
    flex-direction: column; /* Apila las notificaciones verticalmente */
    gap: 10px; /* Espacio entre las notificaciones */
    pointer-events: none; /* Permite hacer clic a través del contenedor si no hay toasts */
}

/* Estilo base de cada notificación toast */
.toast {
    background-color: var(--white-color-site); /* Fondo blanco, asumiendo que tienes esta variable CSS */
    color: var(--text-color-site); /* Color de texto, asumiendo que tienes esta variable CSS */
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Sombra suave */
    opacity: 0; /* Inicialmente invisible */
    transform: translateX(100%); /* Fuera de la vista a la derecha */
    animation: slideIn 0.5s forwards, fadeOut 0.5s 3.5s forwards; /* Animaciones */
    min-width: 250px;
    max-width: 350px;
    font-size: 0.95em;
    font-weight: 500;
    pointer-events: auto; /* Permite la interacción con el toast si está visible */
    border-left: 5px solid; /* Borde lateral para el tipo de notificación */
}

/* Colores para diferentes tipos de toast */
.toast.success {
    border-color: var(--accent-color-site); /* Color de acento para éxito (ej. añadir al carrito) */
}

.toast.info {
    border-color: var(--accent-color-site); /* Un azul para información (ej. añadir a wishlist) */
}

.toast.error {
    border-color: #dc3545; /* Rojo para errores */
}

/* Animación de entrada */
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animación de salida (después de un retraso) */
@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}




/* === SECCIÓN DIVIDIDA (IMAGEN + VIDEO) - VERSIÓN 3 === */
.split-section {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 80px auto;
    gap: 40px;
    overflow: hidden;
    padding: 0 20px;
    box-sizing: border-box;
}

.split-image-panel, .split-video-panel {
    flex: 1;
    position: relative;
    min-height: 550px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Estilos para el panel de imagen */
.split-image-panel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.image-content-v2 {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    padding: 0 40px;
    text-align: center;
    color: var(--white-color-site);
    z-index: 10;
    box-sizing: border-box;
}

.image-content-v2 h2 {
    font-size: 2.8em;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.image-content-v2 p {
    font-size: 1.4em;
    margin-bottom: 25px;
    font-weight: 300;
}

.image-content-v2 .btn-v2 {
    display: inline-block;
    background-color: var(--primary-color-site);
    color: var(--white-color-site);
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.image-content-v2 .btn-v2:hover {
    background-color: var(--accent-color-site);
}

/* Estilos para el panel de video */
.split-video-panel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* NUEVO: Estilos para el contenedor de controles MÍNIMOS */
.video-controls-minimal {
    position: absolute;
    bottom: 20px; /* Distancia desde la parte inferior */
    right: 20px; /* Distancia desde la parte derecha */
    z-index: 20;
    /* Para centrar el botón si fuera necesario, aunque aquí lo posicionamos fijo */
    display: flex;
    justify-content: flex-end; /* Alinea el botón a la derecha */
    width: auto; /* Ancho automático */
    padding: 0; /* Sin padding interno */
}

.play-pause-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.4); /* Fondo semi-transparente para el botón */
    border: 2px solid var(--white-color-site);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.play-pause-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Icono de pausa */
    width: 12px;
    height: 12px;
    background-color: var(--white-color-site);
    /* Dos barras para pausa */
    clip-path: polygon(0 0, 40% 0, 40% 100%, 0% 100%, 60% 0, 100% 0, 100% 100%, 60% 100%);
    transition: clip-path 0.3s ease;
}

/* Estado de Play (triángulo) */
.play-pause-btn.paused::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 12px; /* Triángulo para play */
    border-color: transparent transparent transparent var(--white-color-site);
    clip-path: none; /* Deshabilita clip-path para el triángulo */
    transform: translate(-50%, -50%);
}

.play-pause-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}


/* Media Queries para responsividad */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
        margin: 50px auto;
        padding: 0 15px;
        gap: 30px;
    }
    .split-image-panel, .split-video-panel {
        min-height: 350px;
    }
    .image-content-v2 {
        padding: 0 20px 25px;
    }
    .image-content-v2 h2 {
        font-size: 2em;
    }
    .image-content-v2 p {
        font-size: 1em;
    }
    .image-content-v2 .btn-v2 {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    /* NUEVO: Posicionamiento del botón de play/pausa en móvil */
    .video-controls-minimal {
        bottom: 15px;
        right: 15px;
    }
    .play-pause-btn {
        width: 35px;
        height: 35px;
    }
    .play-pause-btn::before {
        width: 10px;
        height: 10px;
    }
    .play-pause-btn.paused::before {
        border-width: 7px 0 7px 10px;
    }
}


/* === SECCIÓN DE TIPOS DE FLORES === */
.flower-types-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 80px auto;
    max-width: 1400px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.flower-type-card {
    flex: 1 1 300px;
    background-color: var(--secondary-color-site);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.flower-type-card:hover {
    transform: translateY(-5px);
}

.card-link {
    text-decoration: none;
    display: block;
    color: inherit;
    position: relative;
}

.card-image-container {
    position: relative;
    overflow: hidden;
    height: 400px; /* Ajusta la altura de las imágenes */
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: background-color 0.5s ease;
    z-index: 1;
}

/* --- Estilos para el texto en las tarjetas --- */
.card-text {
    position: absolute;
    top: 50%;             /* Mueve el texto a la mitad del contenedor */
    left: 50%;            /* Mueve el texto a la mitad del contenedor */
    transform: translate(-50%, -50%); /* Centra perfectamente el texto */
    z-index: 2;
    text-align: center;
    color: var(--text-color-site); /* Cambia el color a negro */
    text-shadow: none;    /* Elimina la sombra para un estilo más limpio */
    transition: none;     /* Elimina la transición innecesaria */
}

.card-text h3 {
    font-size: 2.5em; /* Aumenta el tamaño de la fuente para que sea más visible */
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
}

/* EFECTO HOVER */
.card-link:hover .overlay {
    background-color: var(--primary-color-site); /* Color sólido al pasar el mouse */
}

.card-link:hover .card-image-container img {
    transform: scale(1.05);
}

.card-link:hover .card-text {
    transform: translateX(-50%) translateY(-10px);
}

/* Media Queries para responsividad */
@media (max-width: 768px) {
    .flower-types-section {
        flex-direction: column;
        align-items: center;
    }
    .flower-type-card {
        width: 100%;
        min-height: 400px;
    }
}


/* === SECCIÓN COMPLETA DE TIPOS DE FLORES === */
.flower-section-container {
    width: 100%;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column; /* Apila el título y las tarjetas verticalmente */
    align-items: center; /* Centra los hijos horizontalmente */
}

/* Estilos para el título de la sección */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-wrapper h2 {
    font-size: 3em;
    font-weight: bold;
    color: var(--text-color-site);
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.section-title-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color-site);
}

/* Contenedor de las tarjetas de flores */
.flower-types-section {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Estilos para las tarjetas de flores */
.flower-type-card {
    flex: 1 1 300px;
    background-color: var(--secondary-color-site);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.flower-type-card:hover {
    transform: translateY(-5px);
}

.card-link {
    text-decoration: none;
    display: block;
    color: inherit;
    position: relative;
}

.card-image-container {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: background-color 0.5s ease;
    z-index: 1;
}

.card-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: var(--text-color-site);
    text-shadow: none;
}

.card-text h3 {
    font-size: 2.5em;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0 0 20px;
}

/* Botón y efecto de hover */
.card-btn {
    display: none;
    padding: 12px 25px;
    background-color: var(--primary-color-site);
    color: var(--text-color-site);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9em;
}

.card-btn:hover {
    background-color: var(--accent-color-site);
    color: var(--white-color-site);
}

.card-link:hover .overlay {
    background-color: #ebcfcf; /* Color sólido al pasar el mouse */
}

.card-link:hover .card-btn {
    display: inline-block;
}

@media (max-width: 768px) {
    .section-title-wrapper h2 {
        font-size: 2em;
        letter-spacing: 2px;
    }
}


/* === SECCIÓN DE VIDEO DE FONDO CON TEXTO ROTATIVO === */
.video-hero-section {
    position: relative;
    width: 97%; 
    margin: 0 auto;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color-site); /* Color de texto base */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
    z-index: -1; /* Asegura que el video esté detrás del texto */
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: var(--text-color-site);
}

.section-subtitle {
    font-size: 1.5em;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0.8;
    color: var(--light-text-color-site);
}

.rotating-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.text-line {
    font-size: 2.5em;
    font-weight: bold;
    letter-spacing: 3px;
    opacity: 0.6;
    transition: opacity 0.5s ease;
    margin-bottom: 10px;
}

.text-line.active {
    opacity: 1;
}

.learn-more-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #F8E8E8;
    color: var(--white-color-site);
    border: 2px solid var(--white-color-site);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: var(--primary-color-site);
    border-color: var(--primary-color-site);
    color: var(--white-color-site);
}

/* Ajustes para pantallas más pequeñas */
@media (max-width: 768px) {
    .text-line {
        font-size: 1.8em;
    }
    .learn-more-btn {
        padding: 12px 25px;
        font-size: 0.8em;
    }
}


/* === Estilos para la sección del formulario === */
.create-account-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 120px 40px;
    box-sizing: border-box;
    background-color: var(--primary-color-site); /* Usa el color de tu paleta */
}

.form-container {
    width: 100%;
    max-width: 450px;
    background-color: var(--white-color-site);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: var(--text-color-site);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-color-site);
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-text-color-site);
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-color-site);
    box-shadow: 0 0 5px rgba(221, 195, 184, 0.5);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--accent-color-site);
    color: var(--white-color-site);
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #c9af9f;
}