/* 
   Ambrosía - Identidad Visual y Estilos Premium
   Colores: Negro Carbón, Oro Champán, Bronce y Blanco Cálido
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --bg-dark: #0A0A0C;
    --bg-card: rgba(18, 18, 22, 0.75);
    --bg-nav: rgba(10, 10, 12, 0.85);
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA7C11;
    --text-white: #FFFFFF;
    --text-muted: #A0A0A8;
    --text-gold: #C5A880;
    --border-gold: rgba(197, 168, 128, 0.2);
    --border-gold-focus: rgba(197, 168, 128, 0.6);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold-glow: 0 0 20px rgba(197, 168, 128, 0.15);
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('assets/desert_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.28; /* Mayor visibilidad para destacar los detalles */
    filter: brightness(0.55) contrast(1.05); /* Incrementado el brillo de 0.3 a 0.55 */
    pointer-events: none;
}

/* Tipografía */
h1, h2, h3, h4, .brand-title {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 2px;
}

/* Scrollbar Personalizado */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Header & Navegación */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-gold);
    transition: var(--transition);
}

header.scrolled {
    padding: 5px 0;
    background: rgba(8, 8, 10, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--text-white);
    letter-spacing: 3px;
    font-weight: 600;
}

.logo-text span {
    color: var(--gold);
}

.cart-icon-container {
    position: relative;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--border-gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-icon-container:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold-glow);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 60px 20px;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.12) 0%, rgba(10, 10, 12, 0.4) 70%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-white);
}

.hero-description {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 35px auto;
}

.cta-button {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--text-white);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--gold);
    color: var(--bg-dark);
    font-weight: bold;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* Categorias y Buscador */
.store-controls {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}

.search-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.search-box {
    position: relative;
    flex: 1 1 300px;
}

.search-input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 14px;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: var(--shadow-gold-glow);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gold);
}

.brand-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 18px;
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-muted);
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--gold);
    color: var(--text-white);
    background: rgba(212, 175, 55, 0.05);
}

/* Grid de Productos */
.products-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Tarjeta de Producto Premium */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-premium), var(--shadow-gold-glow);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(212, 175, 55, 0.9);
    color: var(--bg-dark);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    z-index: 10;
}

.product-badge.out-of-stock {
    background: #555555;
    color: var(--text-white);
}

.product-image-container {
    height: 320px;
    overflow: hidden;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-brand {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gold);
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-white);
    line-height: 1.2;
}

.product-ml {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-light);
    margin-top: auto;
    margin-bottom: 15px;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 5px;
}

.btn-primary {
    padding: 10px 15px;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--bg-dark);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 0 10px rgba(243, 229, 171, 0.3);
}

.btn-secondary {
    padding: 10px 15px;
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-white);
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: var(--transition);
}

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

.btn-primary:disabled, .btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Lateral del Carrito (Slide Panel) */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: rgba(14, 14, 18, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.7);
    border-left: 1px solid var(--border-gold);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid var(--border-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-close-btn:hover {
    color: var(--gold);
}

.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 25px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-gold);
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-name {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--text-white);
    line-height: 1.2;
}

.cart-item-brand {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-gold);
    margin-top: 2px;
}

.cart-item-price {
    font-size: 14px;
    color: var(--gold-light);
    margin-top: 5px;
}

.cart-item-qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-gold);
    color: var(--text-white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

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

.cart-item-remove {
    background: transparent;
    border: none;
    color: #cc3333;
    font-size: 12px;
    cursor: pointer;
    margin-top: 10px;
    align-self: flex-start;
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid var(--border-gold);
    background: rgba(9, 9, 12, 0.5);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 15px;
}

.cart-total-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
}

.btn-whatsapp-checkout {
    width: 100%;
    padding: 14px 20px;
    background: #25D366; /* Color Oficial WhatsApp */
    border: 1px solid #25D366;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-whatsapp-checkout:hover {
    background: #20ba5a;
    border-color: #20ba5a;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.cart-empty-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 40px;
}

/* Modal de Detalles del Perfume (Ficha Técnica) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 850px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    position: relative;
    box-shadow: var(--shadow-premium);
    display: grid;
    grid-template-columns: 1fr;
    animation: modalFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media(min-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr 1.2fr;
    }
}

@keyframes modalFadeIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border-gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.modal-close-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.modal-img-container {
    height: 100%;
    min-height: 350px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-brand {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-gold);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.modal-name {
    font-family: var(--font-serif);
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.modal-price {
    font-size: 24px;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.modal-description {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}

/* Ficha de Notas Olfativas (Pirámide Olfativa) */
.olfactive-pyramid {
    margin-top: 10px;
    margin-bottom: 30px;
    border-top: 1px solid var(--border-gold);
    padding-top: 20px;
}

.pyramid-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gold);
    margin-bottom: 15px;
}

.note-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    margin-bottom: 12px;
    font-size: 13px;
}

.note-label {
    font-weight: 600;
    color: var(--gold-light);
}

.note-content {
    color: var(--text-muted);
}

/* Overlay de Fondo para sidebar */
.overlay-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.overlay-background.open {
    opacity: 1;
    pointer-events: auto;
}

/* Botón flotante WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* Footer de la página */
footer.main-footer {
    background: rgba(7, 7, 9, 0.85);
    border-top: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px 20px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media(min-width: 768px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

.footer-logo-info {
    max-width: 350px;
}

.footer-logo-title {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-logo-title span {
    color: var(--gold);
}

.footer-description {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
}

.footer-links-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* --- ESTILOS DEL CARRUSEL PUBLICITARIO (SLIDER) --- */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 550px;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px 20px;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

/* Animación de entrada para los textos de la diapositiva activa */
.hero-slider .slide.active .hero-subtitle {
    animation: fadeInUp 0.8s ease forwards 0.2s;
    opacity: 0;
}
.hero-slider .slide.active .hero-title {
    animation: fadeInUp 0.8s ease forwards 0.4s;
    opacity: 0;
}
.hero-slider .slide.active .hero-description {
    animation: fadeInUp 0.8s ease forwards 0.6s;
    opacity: 0;
}
.hero-slider .slide.active .cta-button {
    animation: fadeInUp 0.8s ease forwards 0.8s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Flechas del Carrusel */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 12, 0.4);
    border: 1px solid var(--border-gold);
    color: var(--text-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold-glow);
}

.slider-arrow.prev {
    left: 25px;
}

.slider-arrow.next {
    right: 25px;
}

/* Puntos Indicadores */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.slider-dots .dot.active {
    background: var(--gold);
    transform: scale(1.3);
    box-shadow: var(--shadow-gold-glow);
    border-color: var(--gold-light);
}

/* Ocultar flechas en pantallas pequeñas */
@media (max-width: 576px) {
    .slider-arrow {
        display: none;
    }
    .hero-slider-container {
        height: 65vh;
        min-height: 400px;
    }
}

/* --- ESTILOS DE ESPACIOS DE MARCA (BRAND SPACE) --- */
.brand-promo-section {
    margin-bottom: 40px;
    width: 100%;
}

.brand-promo-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.brand-promo-banner::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.brand-promo-text-container {
    flex: 1 1 450px;
    z-index: 2;
}

.brand-promo-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.brand-promo-title {
    font-size: 38px;
    color: var(--text-white);
    margin-bottom: 15px;
    font-family: var(--font-serif);
    letter-spacing: 2px;
}

.brand-promo-description {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
}

/* Tarjeta del Perfume Destacado */
.brand-featured-card {
    flex: 0 0 260px;
    background: rgba(18, 18, 22, 0.85);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    transition: var(--transition);
}

.brand-featured-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: var(--shadow-premium), var(--shadow-gold-glow);
}

.featured-badge {
    position: absolute;
    top: -12px;
    background: var(--gold-dark);
    color: var(--text-white);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--gold);
    box-shadow: var(--shadow-premium);
}

.featured-card-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-card-info {
    width: 100%;
}

.featured-card-title {
    font-size: 15px;
    font-family: var(--font-serif);
    color: var(--text-white);
    margin-bottom: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.featured-card-price {
    font-size: 16px;
    color: var(--gold-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    .brand-promo-banner {
        padding: 30px 20px;
        flex-direction: column;
        align-items: stretch;
    }
    .brand-promo-text-container {
        text-align: center;
        flex: 1 1 auto;
    }
    .brand-promo-title {
        font-size: 32px;
    }
    .brand-featured-card {
        flex: 1 1 auto;
        align-self: center;
        width: 100%;
        max-width: 320px;
    }
}
