/* ==========================================================================
   PERFUMERÍA PARÍS LA PLATA - HOJA DE ESTILOS BOUTIQUE & CATÁLOGO
   ========================================================================== */

/* Variables de Diseño - Estilo MFK Claro */
:root {
    --primary: #071F3F; /* Azul marino oficial */
    --primary-rgb: 7, 31, 63;
    
    --bg-main: #FFF8F0; /* Fondo principal blanco cálido súper limpio */
    --cream-pearl: #F8EFE4; /* Crema perolado para cards de perfumes y secciones */
    --cream-dark: #EADBC8;
    
    --gold: #D4AF37; /* Dorado metálico */
    --gold-light: #F6E7B8;
    --gold-dark: #AA8010;
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA8010);
    
    --rose-soft: #E8B7A8; /* Rosé suave de acento */
    --rose-light: #FBF5F3;
    
    --champagne: #F3D9B1; /* Champagne */
    --white: #FFFFFF;
    
    --text-dark: #071F3F; /* Textos en azul marino */
    --text-muted: #62758F;
    --text-light: #FFFFFF;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', Helvetica, Arial, sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-light: 0 4px 20px rgba(7, 31, 63, 0.02);
    --shadow-premium: 0 15px 35px rgba(7, 31, 63, 0.04);
    --shadow-gold: 0 8px 20px rgba(212, 175, 55, 0.12);
    
    --border-fine-gold: 1px solid rgba(212, 175, 55, 0.45); /* Borde dorado catálogo PDF */
    --border-fine-gold-alpha: 1px solid rgba(212, 175, 55, 0.2);
    --border-champagne: 1px solid rgba(243, 217, 177, 0.6);
}

/* Reset y Estilos Globales */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* Contenedores */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Encabezados y Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--primary);
    line-height: 1.2;
}

.highlight-gold {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold-dark);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Botones Boutique */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px; /* Bordes rectos sutiles estilo MFK */
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background: var(--gold-gradient);
    border-color: var(--gold);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--primary);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    background: transparent;
    padding: 12px 26px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 15px 32px;
    font-size: 0.8rem;
}

/* Animaciones al Scroll */
.fade-in-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-200 { transition-delay: 0.2s; }
.delay-400 { transition-delay: 0.4s; }

/* CABECERA (HEADER) */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.85); /* Blanco cálido translúcido */
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 2px 0;
    box-shadow: 0 8px 30px rgba(7, 31, 63, 0.02);
}

.navbar-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.navbar-header.scrolled .navbar-container {
    padding: 8px 24px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: var(--white);
    padding: 1px;
    transition: var(--transition);
}

.navbar-header.scrolled .logo-img {
    height: 40px;
    width: 40px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.1em;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.25em;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.75;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition-fast);
}

.nav-link:hover {
    opacity: 1;
    color: var(--gold-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    opacity: 1;
    color: var(--gold-dark);
    font-weight: 700;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-navbar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 9px 18px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-navbar:hover {
    transform: translateY(-1px);
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(7, 31, 63, 0.08);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 14px;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

/* HERO SECTION (Estilo MFK Clara) */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-main);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/instagram.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.012;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-watermark-eiffel {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 700px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 250" fill="none" stroke="%23D4AF37" stroke-width="0.1" stroke-opacity="0.25"><path d="M50 5 L48 10 L48 30 L45 70 L40 140 L30 220 L25 245 L75 245 L70 220 L60 140 L55 70 L52 30 L52 10 Z"/><path d="M35 180 L65 180 M42 120 L58 120 M46 70 L54 70 M48 30 L52 30"/><path d="M40 140 A 15 15 0 0 1 60 140"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 40px;
    z-index: 5;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 550px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.hero-moodboard {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatAnimation 8s ease-in-out infinite;
}

.moodboard-card {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 12px 30px rgba(7, 31, 63, 0.04);
    transition: var(--transition);
}

.moodboard-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.moodboard-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px;
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    font-family: var(--font-serif);
    font-size: 0.72rem;
    font-style: italic;
    color: var(--gold-dark);
    text-align: center;
    letter-spacing: 0.05em;
}

.card-top {
    width: 210px;
    height: 270px;
    top: 10px;
    left: 20px;
    z-index: 10;
    transform: rotate(-3deg);
}

.card-bottom {
    width: 190px;
    height: 250px;
    bottom: 10px;
    right: 20px;
    z-index: 5;
    transform: rotate(4deg);
}

.moodboard-card:hover {
    transform: scale(1.04) rotate(0deg);
    z-index: 20;
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(7, 31, 63, 0.08);
}

.boutique-flowers-decor {
    position: absolute;
    width: 115%;
    height: 115%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none"><path d="M10 50 C10 40 30 45 50 50 C70 55 90 60 90 50 C90 40 70 45 50 50 C30 55 10 60 10 50" stroke="%23E8B7A8" stroke-width="0.08" stroke-dasharray="1 1"/><circle cx="50" cy="50" r="48" stroke="%23F3D9B1" stroke-width="0.08" stroke-dasharray="2 2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -2;
}

.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 5;
}

.scroll-indicator span {
    margin-bottom: 4px;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* CABECERAS DE SECCIÓN */
.section-header {
    text-align: center;
    margin-bottom: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 8px auto 16px;
    position: relative;
}

.section-divider::after {
    content: '🌸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-main);
    color: var(--gold);
    padding: 0 4px;
    font-size: 0.55rem;
}

.align-left {
    margin-left: 0;
    margin-right: auto;
}

.align-left::after {
    left: 12px;
    transform: translateY(-50%);
}

.section-desc {
    font-size: 0.9rem;
    font-weight: 400;
    max-width: 550px;
    color: var(--text-muted);
}

/* SECCIÓN DE COLECCIONES (3 Cards) */
.collections-section {
    padding: 80px 0;
    background-color: var(--white);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.collection-boutique-card-small {
    background: var(--bg-main);
    border: var(--border-champagne);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.collection-boutique-card-small:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: var(--gold);
}

.card-img-wrapper {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.collection-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 5s ease;
}

.collection-boutique-card-small:hover .collection-card-img {
    transform: scale(1.05);
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,248,240,0) 50%, rgba(255,248,240,0.4) 100%);
}

.resell-card-gradient-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--rose-light) 0%, var(--cream-pearl) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-resell-bg {
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.25);
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.collection-boutique-card-small .card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.collection-boutique-card-small .card-body h3 {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.collection-boutique-card-small .card-body p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
}

.btn-card-action {
    align-self: center;
    padding: 8px 18px;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    background: var(--white);
    transition: var(--transition-fast);
}

.btn-card-action:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* EL CORAZÓN DEL SITIO: CATÁLOGO / VIDRIERA DIGITAL */
.catalog-section {
    padding: 80px 0;
    background-color: var(--bg-main);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.catalog-controls-container {
    max-width: 900px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Barra de Búsqueda */
.search-bar-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    background: var(--white);
    border: var(--border-champagne);
    border-radius: 4px;
    padding: 2px;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.search-bar-wrapper:focus-within {
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(7, 31, 63, 0.04);
}

.search-icon {
    position: absolute;
    left: 16px;
    color: var(--gold-dark);
    font-size: 0.95rem;
}

.search-bar-wrapper input {
    width: 100%;
    padding: 12px 40px 12px 44px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--text-dark);
    outline: none;
}

.search-bar-wrapper input::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

.clear-search-btn {
    position: absolute;
    right: 14px;
    color: var(--text-muted);
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.clear-search-btn.show {
    opacity: 0.7;
    visibility: visible;
}

.clear-search-btn:hover {
    opacity: 1;
    color: var(--primary);
}

/* Botones de Filtro */
.filter-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 8px 18px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--cream-dark);
    background: var(--white);
    color: var(--primary);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(7, 31, 63, 0.1);
}

/* Grilla del Catálogo */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    transition: opacity 0.3s ease;
}

/* Card de Perfume (Catálogo PDF) */
.perfume-card {
    background: var(--cream-pearl); /* Fondo crema perla requerido */
    border: var(--border-fine-gold); /* Borde dorado fino requerido */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.perfume-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: var(--gold-dark);
}

.perfume-img-container {
    height: 230px;
    background: var(--white); /* Contenedor blanco para destacar la foto */
    position: relative;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.perfume-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Foto grande sin distorsionar */
    transition: transform 0.6s ease;
}

.perfume-card:hover .perfume-img {
    transform: scale(1.05);
}

.gender-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 2px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-light);
}

.gender-tag.female { background-color: var(--rose-light); color: #C66E61; border-color: rgba(232,183,168,0.4); }
.gender-tag.male { background-color: rgba(7, 31, 63, 0.03); color: var(--primary); border-color: rgba(7, 31, 63, 0.15); }
.gender-tag.unisex { background-color: #FAF2E6; color: var(--gold-dark); border-color: rgba(212, 175, 55, 0.3); }

.perfume-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.perfume-brand {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 6px;
}

.perfume-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.perfume-divider {
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin: 4px 0 10px;
    opacity: 0.6;
}

.perfume-aroma {
    font-size: 0.72rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-consult-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    background: var(--gold-gradient);
    color: var(--primary);
    border: 1px solid var(--gold);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.1);
    transition: var(--transition-fast);
}

.btn-consult-wa:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 15px rgba(7, 31, 63, 0.12);
}

/* Caja de sin resultados */
.no-results-box {
    text-align: center;
    padding: 50px 20px;
    background: var(--white);
    border-radius: 8px;
    border: var(--border-champagne);
    width: 100%;
    grid-column: 1 / -1;
    box-shadow: var(--shadow-light);
}

.empty-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 16px;
    opacity: 0.7;
}

.no-results-box p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.no-results-box span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* SECCIÓN: COMPRÁ PARA VOS O PARA REVENDER */
.options-section {
    padding: 80px 0;
    background-color: var(--white);
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.option-column {
    display: flex;
}

.option-card {
    background: var(--bg-main);
    border: var(--border-champagne);
    border-radius: 12px;
    padding: 44px;
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    width: 100%;
    transition: var(--transition);
}

.option-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
}

.option-card.highlighted {
    background: var(--cream-pearl);
    border: var(--border-fine-gold);
}

.option-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-light);
}

.option-card h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.option-lead {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.option-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1;
}

/* SECCIÓN: BENEFICIOS (REVENDEDORES) */
.benefits-section {
    padding: 80px 0;
    background-color: var(--bg-main);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.benefit-item {
    background: var(--white);
    border: var(--border-champagne);
    border-radius: 8px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
    border-color: var(--gold);
}

.benefit-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold-dark);
    margin-bottom: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.benefit-item h3 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Caja de reventa (CTA Mayorista) */
.wholesale-cta-box {
    background: var(--white);
    border: var(--border-fine-gold);
    border-radius: 12px;
    padding: 44px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.wholesale-cta-box::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px dashed rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    pointer-events: none;
}

.wholesale-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.wholesale-content h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.wholesale-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* SECCIÓN: CONTACTO */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
    align-items: center;
}

.contact-info-card {
    background: var(--bg-main);
    border: var(--border-champagne);
    border-radius: 12px;
    padding: 36px;
    box-shadow: var(--shadow-light);
}

.contact-info-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 10px;
    font-weight: 500;
}

.contact-lead-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.contact-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid rgba(236, 224, 206, 0.4);
    padding: 12px 18px;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.contact-link-item:hover {
    background: var(--cream-pearl);
    border-color: var(--gold);
    transform: translateX(3px);
}

.contact-link-item.no-click {
    cursor: default;
}

.contact-link-item.no-click:hover {
    background: var(--white);
    border-color: rgba(236, 224, 206, 0.4);
    transform: none;
}

.contact-circle-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
}

.contact-circle-icon.wa { background: #25D366; }
.contact-circle-icon.ig { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.contact-circle-icon.tk { background: #000000; }
.contact-circle-icon.pin { background: rgba(212, 175, 55, 0.1); color: var(--gold-dark); border: 1px solid rgba(212, 175, 55, 0.2); }

.contact-text-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.contact-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.boutique-map-wrapper {
    border: var(--border-champagne);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    height: 410px;
}

.boutique-map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* RODAPÉ (FOOTER) */
.main-footer {
    background-color: var(--bg-main);
    color: var(--primary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

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

.footer-logo-box {
    max-width: 500px;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 70px;
    width: 70px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: var(--white);
    padding: 2px;
    margin: 0 auto 12px;
}

.footer-logo-box h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.footer-quote {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-divider-fine {
    width: 100%;
    height: 1px;
    background: rgba(212, 175, 55, 0.12);
    margin-bottom: 24px;
}

.footer-bottom-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: left;
    line-height: 1.5;
}

.socials-box {
    display: flex;
    gap: 10px;
}

.socials-box a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.socials-box a:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: rgba(212, 175, 55, 0.06);
    transform: translateY(-2px);
}

/* BOTÓN DE WHATSAPP FLOTANTE */
.whatsapp-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2), 0 0 0 0px rgba(37, 211, 102, 0.25);
    z-index: 999;
    transition: var(--transition-fast);
    animation: waPulse 2s infinite;
}

.whatsapp-floating:hover {
    transform: scale(1.05) translateY(-2px);
    background-color: #20ba59;
}

.wa-tooltip {
    position: absolute;
    right: 65px;
    background: var(--white);
    color: var(--primary);
    padding: 6px 12px;
    font-size: 0.68rem;
    font-weight: 700;
    border-radius: 4px;
    white-space: nowrap;
    border: 1px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-premium);
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--white);
    border-right: 1px solid var(--gold);
    border-top: 1px solid var(--gold);
}

.whatsapp-floating:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes waPulse {
    0% { box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2), 0 0 0 0px rgba(37, 211, 102, 0.25); }
    70% { box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2), 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2), 0 0 0 0px rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   DISEÑO ADAPTATIVO (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title { font-size: 2.6rem; }
    .hero-container { gap: 16px; }
    .hero-logo-frame { width: 270px; height: 270px; }
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
    .collections-grid > div:last-child { grid-column: span 2; }
    .catalog-grid { grid-template-columns: repeat(3, 1fr); }
    .options-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .boutique-map-wrapper { height: 350px; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; z-index: 1100; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 260px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        border-left: 1px solid rgba(212, 175, 55, 0.15);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: var(--transition);
        z-index: 1050;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    .navbar-actions {
        margin-right: 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 24px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-logo-frame {
        width: 240px;
        height: 240px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .wholesale-cta-box {
        padding: 30px 20px;
    }
    
    .wholesale-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.85rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .btn-navbar { display: none; }
    .navbar-actions { margin-right: 28px; }
    
    .collections-grid { grid-template-columns: 1fr; }
    .collections-grid > div:last-child { grid-column: span 1; }
    
    .catalog-controls-container { margin-bottom: 24px; }
    .filter-buttons-wrapper { gap: 6px; }
    .filter-btn { padding: 6px 12px; font-size: 0.68rem; }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .perfume-img-container {
        height: 200px;
    }
    
    .option-card { padding: 30px 20px; }
    .option-card h2 { font-size: 1.5rem; }
    
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit-item { padding: 24px 16px; }
    
    .contact-info-card { padding: 24px 16px; }
    .contact-info-card h3 { font-size: 1.4rem; }
    .contact-link-item { padding: 10px 12px; gap: 10px; }
    
    .footer-bottom-row { flex-direction: column-reverse; text-align: center; }
    .copyright { text-align: center; }
    .whatsapp-floating { bottom: 12px; right: 12px; width: 44px; height: 44px; font-size: 1.4rem; }
}
