/* ==========================================================================
   AROMA PERFUMES - ESTILOS PRINCIPALES
   ========================================================================== */

/* --- VARIABLES --- */
:root {
    --color-bg: #FDFBF8; /* Crema muy claro */
    --color-surface: #FFFFFF;
    --color-surface-alt: #F4F1ED;
    --color-text: #1C1B19; /* Gris muy oscuro, casi negro */
    --color-text-light: #6A6763;
    --color-accent: #B88E5F; /* Dorado apagado/elegante */
    --color-accent-hover: #9E7951;
    --color-border: #E8E4DF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* --- RESET & GLOBALES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- TIPOGRAFÍA --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

/* --- BOTONES --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 0; /* Bordes rectos para look premium */
}

.btn-primary {
    background-color: var(--color-text);
    color: #FFF;
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

.btn-secondary {
    background-color: var(--color-surface);
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-text);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    transition: var(--transition-smooth);
}

.btn-link:hover {
    color: var(--color-accent);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    gap: 0.5rem;
    border-radius: 4px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.w-100 {
    width: 100%;
}

/* --- TOP BANNER --- */
.top-banner {
    background-color: var(--color-text);
    color: #FFF;
    text-align: center;
    padding: 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* --- HEADER / NAV --- */
.header {
    background-color: rgba(253, 251, 248, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 140px;
    max-width: 350px;
    padding: 0.5rem;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--color-text);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-text);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icons button, .header-icons a {
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.header-icons button:hover, .header-icons a:hover {
    color: var(--color-accent);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--color-text);
    color: #FFF;
    font-size: 0.65rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-menu span {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition-smooth);
    transform-origin: center;
}

.burger-menu.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.burger-menu.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.burger-menu.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--color-surface-alt);
    align-items: stretch;
}

.hero-content {
    padding: 4rem 10% 4rem 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.hero-desc {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 400px;
    margin-bottom: 2.5rem;
}

.hero-image {
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- BENEFITS --- */
.benefits {
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-border);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.benefit-text h3 {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

/* --- PRODUCT SECTION --- */
.products-section {
    padding: 6rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: var(--color-surface);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.product-image {
    height: 250px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-surface-alt);
    padding: 1rem;
}

.product-image img {
    max-height: 100%;
    mix-blend-mode: multiply;
}

.product-info h3 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.product-info .category {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.product-price {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.price-original {
    text-decoration: line-through;
    color: var(--color-text-light);
    font-size: 0.875rem;
    font-weight: 400;
}

.price-discount {
    color: #D32F2F;
}

.add-to-cart {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background-color: var(--color-text);
    color: #FFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.product-card:hover .add-to-cart {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart:hover {
    background-color: var(--color-accent);
}

/* --- COLLECTIONS --- */
.collections {
    padding: 6rem 0;
    background-color: var(--color-surface-alt);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.col-text {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.col-desc {
    color: var(--color-text-light);
    margin: 1rem 0 2rem;
}

.col-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.col-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.col-card:hover img {
    transform: scale(1.05);
}

.col-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    color: #FFF;
}

.col-icon {
    width: 32px;
    margin: 0 auto 1rem;
    color: #FFF;
}

.col-card-content h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: #FFF;
    margin-bottom: 0.25rem;
}

.col-card-content p {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* --- LUXURY ABOUT US SECTION --- */
.about-section {
    padding: 8rem 0;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.about-intro {
    max-width: 700px;
    margin: 0 auto 6rem;
    text-align: center;
    position: relative;
}

.about-intro::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--color-accent);
    opacity: 0.15;
    line-height: 1;
}

.about-intro p {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-text);
    font-style: italic;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 0 2rem;
    margin-bottom: 4rem;
}

.luxury-card {
    position: relative;
    padding: 3.5rem 2.5rem;
    background-color: transparent;
    border: 1px solid var(--color-border);
    text-align: center;
    overflow: hidden;
    transition: all 0.5s ease;
}

.luxury-card:hover {
    background-color: var(--color-surface);
    border-color: var(--color-accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.card-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.luxury-card:hover .card-number {
    opacity: 0.08;
    transform: scale(1.1);
}

.luxury-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    letter-spacing: 0.05em;
}

.luxury-card-line {
    width: 40px;
    height: 1px;
    background-color: var(--color-accent);
    margin: 0 auto 1.5rem;
    transition: width 0.3s ease;
}

.luxury-card:hover .luxury-card-line {
    width: 60px;
}

.luxury-card-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.about-footer {
    text-align: center;
    margin-top: 5rem;
}

.about-highlight {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.about-highlight::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-accent);
    margin-top: 8px;
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 6rem 0;
    background-color: var(--color-surface);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.6;
    padding-bottom: 0;
    padding-right: 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--color-surface-alt);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3.5rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-img {
    height: 72px;
    max-width: 200px;
    padding: 0;
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.75rem;
    max-width: 240px;
    line-height: 1.6;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
    color: var(--color-text);
}

.footer-links a {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.7rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-text);
}

/* Columna Contáctanos centrada */
.footer-contact {
    text-align: center;
}

.footer-contact h4 {
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    margin-top: 0.25rem;
}

.social-icon {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    transition: color 0.2s;
    white-space: nowrap;
}

.social-icon:hover {
    color: var(--color-accent);
}

.social-icon svg {
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* --- MODAL (WHATSAPP CHECKOUT) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: var(--color-surface);
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-light);
    cursor: pointer;
}

.modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.cart-summary {
    background-color: var(--color-surface-alt);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.cart-item-summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed var(--color-border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-text);
}

.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--color-text-light);
}

/* --- REVIEWS --- */
.reviews-section {
    padding: 6rem 0;
    background-color: var(--color-surface);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: #E2B961; /* Dorado premium */
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
}

.review-date {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.star-rating {
    font-size: 2.5rem;
    color: #ddd;
    cursor: pointer;
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.star-rating span {
    transition: color 0.2s;
}

.star-rating span.active, .star-rating span:hover, .star-rating span:hover ~ span {
    color: #E2B961;
}

/* Fix hover logic for stars: we want left to right */
.star-rating {
    flex-direction: row;
}

/* --- RESPONSIVE --- */

/* Tablets grandes / desktop pequeño */
@media (max-width: 1200px) {
    .hero-content {
        padding: 4rem 6% 4rem 8%;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-content {
        padding: 3rem 2rem 2.5rem;
        align-items: center;
        text-align: center;
        order: 2;
    }
    .hero-image {
        order: 1;
        min-height: 360px;
    }
    .hero-desc {
        max-width: 100%;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .col-text {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
        align-items: center;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
    .footer-desc {
        max-width: 100%;
        text-align: center;
    }
}

/* Móvil */
@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    .logo-img {
        height: 56px;
        max-width: 180px;
        padding: 0;
    }
    .header-icons {
        gap: 0.75rem;
    }
    .header-icons svg {
        width: 18px;
        height: 18px;
    }
    .burger-menu {
        display: flex;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(253, 251, 248, 0.98);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        border-top: 1px solid var(--color-border);
        z-index: 99;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu a {
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid var(--color-border);
        text-align: center;
        width: 100%;
        font-size: 0.875rem;
    }
    .nav-menu a::after {
        display: none;
    }
    .hero-content {
        padding: 2.5rem 1.5rem 2rem;
    }
    .hero-title {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }
    .hero-image {
        min-height: 300px;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .products-section,
    .reviews-section {
        padding: 4rem 0;
    }
    .collections {
        padding: 4rem 0;
    }
    .col-card {
        height: 320px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
    /* Modal más cómodo en móvil */
    .modal {
        width: 95%;
        padding: 1.75rem 1.25rem;
        max-height: 92vh;
    }
}

/* Móvil pequeño */
@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    .top-banner {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
    }
    .hero-content {
        padding: 2rem 1.25rem;
    }
    .hero-title {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
    }
    .hero-desc {
        font-size: 0.95rem;
    }
    .hero-image {
        min-height: 240px;
    }
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.75rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .product-image {
        height: 160px;
        padding: 0.75rem;
    }
    .product-info h3 {
        font-size: 0.8125rem;
    }
    .add-to-cart,
    .product-card:hover .add-to-cart {
        opacity: 1;
        transform: translateY(0);
    }
    .collections-grid {
        grid-template-columns: 1fr;
    }
    .col-card {
        height: 260px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-content {
        padding: 3rem 2rem 2.5rem;
        align-items: center;
        text-align: center;
        order: 2;
    }
    .hero-image {
        order: 1;
        min-height: 360px;
    }
    .hero-desc {
        max-width: 100%;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-intro p {
        font-size: 1.1rem;
    }
    .luxury-card {
        padding: 2rem 1.5rem;
        margin-top: 0 !important;
    }
    .col-text {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
        align-items: center;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
    .footer-desc {
        max-width: 100%;
        text-align: center;
    }
}

/* Móvil */
@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    .logo-img {
        height: 56px;
        max-width: 180px;
        padding: 0;
    }
    .header-icons {
        gap: 0.75rem;
    }
    .header-icons svg {
        width: 18px;
        height: 18px;
    }
    .burger-menu {
        display: flex;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(253, 251, 248, 0.98);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        border-top: 1px solid var(--color-border);
        z-index: 99;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu a {
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid var(--color-border);
        text-align: center;
        width: 100%;
        font-size: 0.875rem;
    }
    .nav-menu a::after {
        display: none;
    }
    .hero-content {
        padding: 2.5rem 1.5rem 2rem;
    }
    .hero-title {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }
    .hero-image {
        min-height: 300px;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .products-section,
    .reviews-section,
    .about-section {
        padding: 4rem 0;
    }
    .collections {
        padding: 4rem 0;
    }
    .col-card {
        height: 320px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
    /* Modal más cómodo en móvil */
    .modal {
        width: 95%;
        padding: 1.75rem 1.25rem;
        max-height: 92vh;
    }
}

/* Móvil pequeño */
@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    .top-banner {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
    }
    .hero-content {
        padding: 2rem 1.25rem;
    }
    .hero-title {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
    }
    .hero-desc {
        font-size: 0.95rem;
    }
    .hero-image {
        min-height: 240px;
    }
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.75rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .product-image {
        height: 160px;
        padding: 0.75rem;
    }
    .product-info h3 {
        font-size: 0.8125rem;
    }
    .add-to-cart,
    .product-card:hover .add-to-cart {
        opacity: 1;
        transform: translateY(0);
    }
    .collections-grid {
        grid-template-columns: 1fr;
    }
    .col-card {
        height: 260px;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand {
        align-items: center;
    }
    .footer-desc {
        max-width: 100%;
        text-align: center;
    }
    .footer-links {
        text-align: center;
    }
    .modal {
        padding: 1.5rem 1rem;
        border-radius: 8px 8px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 90vh;
        transform: none !important;
        border-radius: 16px 16px 0 0;
    }
    .modal-overlay.active .modal {
        transform: none !important;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .col-6 {
        flex: 0 0 100%;
    }
}

/* --- TOAST NOTIFICATION --- */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--color-text);
    color: #FFF;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2000;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast-notification svg {
    color: var(--color-accent);
}
