/*
 Theme Name:   Blocksy Child - Nenas Beauty
 Theme URI:    https://creativethemes.com/blocksy/
 Description:  Blocksy Child Theme para la tienda Nenas Beauty.
 Author:       Antigravity AI
 Author URI:   
 Template:     blocksy
 Version:      1.0.0
 Text Domain:  blocksy-child
*/

:root {
    /* Paleta Nenas Beauty */
    --theme-palette-color-1: #E8A0BF !important; /* Principal (Rosa Pastel) */
    --theme-palette-color-2: #FCDDEC !important; /* Secundario / Hover */
    --theme-palette-color-3: #2C2A29 !important; /* Texto Base */
    --theme-palette-color-4: #827E7C !important; /* Bordes / Texto secundario */
    --theme-palette-color-5: #FDF6F5 !important; /* Fondo principal */
    
    /* Tipografía */
    --theme-font-family: 'Montserrat', sans-serif !important;
    --theme-heading-font-family: 'Playfair Display', serif !important;
}

body {
    background-color: var(--theme-palette-color-5) !important;
    color: var(--theme-palette-color-3) !important;
    font-family: var(--theme-font-family) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--theme-heading-font-family) !important;
}

/* Ajuste definitivo del logo (tamaño grande y recorte de la palabra) */
.site-logo {
    overflow: hidden !important;
    height: 90px !important; /* Altura de la barra del logo */
    display: flex;
    align-items: flex-start;
}
.site-logo img {
    height: 200px !important; /* Aún más grande */
    width: auto !important;
    max-height: none !important;
    max-width: none !important; /* ¡Esta era la clave que bloqueaba el crecimiento! */
    object-fit: cover !important;
    object-position: top center !important;
    margin-top: -25px !important; /* Cortamos espacio en blanco de arriba */
}

/* Ocultar el texto del título ya que tenemos el logo */
.site-title {
    display: none !important;
}

/* ====== TOP BAR ====== */
.nenas-top-bar {
    background-color: var(--theme-palette-color-3);
    color: #fff;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.nenas-top-bar a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}
.nenas-top-bar a:hover {
    color: var(--theme-palette-color-1);
}
.tb-social {
    display: flex;
    gap: 10px;
}
.tb-social svg {
    width: 16px;
    height: 16px;
}

/* ====== LIFESTYLE LUXURY ANIMATIONS ====== */
.luxury-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.luxury-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
