/* ================================
   VITAR STORE - Estilos Globales
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de colores - Landing Principal */
    --rosa-claro: #f8d7da;
    --rosa-medio: #f5b7c2;
    --rosa-fuerte: #e8a0b0;
    --coral: #e6a4a4;
    --texto-oscuro: #4a3f3f;
    --blanco: #ffffff;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.6;
    color: var(--texto-oscuro);
}

/* ================================
   LANDING PAGE - Pagina Principal
   ================================ */

.landing {
    height: 100vh;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 245, 247, 0.6) 0%, rgba(253, 230, 235, 0.5) 50%, rgba(250, 220, 228, 0.5) 100%),
        url('/img/fondo-hojas.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.landing-content {
    text-align: center;
    padding: 2rem;
}

.logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(5rem, 20vw, 14rem);
    font-weight: 500;
    font-style: italic;
    color: var(--texto-oscuro);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5);
}

.tagline {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--texto-oscuro);
    letter-spacing: 0.4em;
    opacity: 0.85;
}

/* Efecto de luz del cursor */
.cursor-light {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 50;
    mix-blend-mode: soft-light;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-light.active {
    opacity: 1;
}

/* ================================
   MENU HAMBURGUESA
   ================================ */

.menu-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 100;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--texto-oscuro);
    transition: all 0.3s ease;
}

.menu-toggle:hover span {
    background: var(--rosa-fuerte);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    z-index: 200;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 4rem 3rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.menu-overlay.active {
    right: 0;
}

.menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--texto-oscuro);
    line-height: 1;
}

.menu-close:hover {
    color: var(--rosa-fuerte);
}

.menu-list {
    list-style: none;
    margin-top: 2rem;
}

.menu-list li {
    margin-bottom: 1.5rem;
}

.menu-list a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--texto-oscuro);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
}

.menu-list a:hover {
    color: var(--rosa-fuerte);
}

/* ================================
   PAGINAS DE PRODUCTO
   ================================ */

.producto-page {
    min-height: 100vh;
}

.producto-page header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.producto-page .logo-small {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    font-style: italic;
    text-decoration: none;
    color: inherit;
}

.producto-page main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.producto-detalle {
    padding: 2rem 0;
}

.producto-detalle h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.producto-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .producto-info {
        grid-template-columns: 1fr;
    }
}

.producto-imagen img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.placeholder-img {
    background: linear-gradient(135deg, #f8d7da, #f5b7c2);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--texto-oscuro);
    font-style: italic;
}

.producto-descripcion {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.precio {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.producto-descripcion p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--texto-oscuro);
    color: var(--blanco);
}

.btn-primary:hover {
    background: var(--rosa-fuerte);
}

.btn-volver {
    display: inline-block;
    margin-top: 2rem;
    color: var(--texto-oscuro);
    text-decoration: none;
    font-style: italic;
}

.btn-volver:hover {
    color: var(--rosa-fuerte);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: var(--texto-oscuro);
    opacity: 0.7;
}
