/* ═══════════════════════════════════════════
   AUREQLUXE — style.css
   ═══════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── CUSTOM PROPERTIES ── */
:root {
    --bg:           #fdfbf7;
    --header-glass: #fdfbf7;
    --header-glass-scrolled: #fdfbf7;
    --features-bg:  #f5f2ed;
    --gold:         #c69b7b;
    --gold-hover:   #b8896a;
    --dark-text:    #2a2421;
    --nav-text:     #4c4643;
    --mid-gray:     #7a746f;
    --light-gray:   #a09a96;
    --border:       #e8e2da;
    --footer-bg:    #2a2421;
    --footer-muted: #b6aea5;
    --footer-link:  #f0e9e1;
}

/* ── BASE ── */
body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin-inline: auto;
    padding-inline: 44px;
}

/* ════════════════════════
   HEADER
════════════════════════ */
.site-header {
    background: #fdfbf7;
    border-bottom: 1px solid rgba(232, 226, 218, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
    gap: 30px;
}

/* Logo */
.brand {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.brand img {
    width: 232px;
    height: auto;
    display: block;
}

.brand-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border: 2px solid #4a4340;
    border-radius: 50%;
    margin: 0 1px;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0;
}

/* Nav links */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 46px;
}

.main-nav a,
.auth-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--nav-text);
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.auth-link:hover {
    color: var(--gold);
}

/* Nav actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}

.register-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: var(--gold);
    color: #fff;
    padding: 12px 22px;
    border-radius: 2px;
    transition: background 0.2s ease;
}

.register-btn:hover {
    background: var(--gold-hover);
}

.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #2a2421;
    padding: 0;
    display: flex;
    align-items: center;
}

.cart-btn svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ════════════════════════
HERO
════════════════════════ */
.hero {
    background: var(--bg);
    padding: 88px 0 96px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(54px, 5.2vw, 84px);
    font-weight: 500;
    line-height: 1.02;
    color: var(--dark-text);
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.55;
    color: var(--mid-gray);
    max-width: 520px;
    margin-bottom: 34px;
}

/* Botón VER PRODUCTOS */
.cta-btn {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    padding: 14px 30px;
    border-radius: 2px;
    transition: background 0.2s;
}

.cta-btn:hover {
    background: var(--gold-hover);
}

/* Hero image */
.hero-image {
    width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    background: url("../img/Banner/Bannerimg.png") center / cover no-repeat;
}

.hero-image::before {
    content: none;
}

.hero-image::after {
    content: none;
}

.hero-image-inner {
    display: none;
}

/* ════════════════════════
   FEATURES
════════════════════════ */
.features {
    background: var(--features-bg);
    padding: 84px 0 92px;
}

.features h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(46px, 4.2vw, 64px);
    font-weight: 500;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 62px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-num {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.feature-copy {
    font-size: 17px;
    line-height: 1.55;
    color: var(--mid-gray);
    max-width: 340px;
    margin-inline: auto;
}

/* ════════════════════════
   TESTIMONIOS
════════════════════════ */
.testimonials {
    background: #f2f1f3;
    padding: 78px 0 92px;
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 4vw, 60px);
    font-weight: 500;
    line-height: 1.08;
    color: #1f1c20;
    margin-bottom: 12px;
}

.testimonials-subtitle {
    font-size: clamp(18px, 1.35vw, 26px);
    color: #59545c;
    margin-bottom: 30px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: #fbfbfc;
    border: 1px solid #dddbe0;
    border-radius: 18px;
    padding: 28px 24px 22px;
    box-shadow: 0 8px 20px rgba(39, 31, 48, 0.05);
}

.testimonial-stars {
    color: var(--gold);
    letter-spacing: 0.16em;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.testimonial-quote {
    font-size: clamp(17px, 1.18vw, 22px);
    line-height: 1.42;
    color: #1f2633;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: clamp(21px, 1.5vw, 30px);
    font-weight: 700;
    color: #1d2736;
    line-height: 1.12;
}

/* ════════════════════════
   FOOTER
════════════════════════ */
.site-footer {
    background: #2a2421;
    color: #efe8df;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding: 54px 0 36px;
    border-bottom: 1px solid rgba(255,255,255,0.16);
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-logo {
    width: 250px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: var(--footer-muted);
    max-width: 360px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    color: #f0e8df;
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col a {
    font-size: 14px;
    color: var(--footer-link);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #d8c9ba;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--footer-muted);
}

.footer-bottom {
    text-align: center;
    padding: 14px 0 18px;
}

.footer-bottom p {
    font-size: 13px;
    letter-spacing: 0.16em;
    color: #b4aba2;
}

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 900px) {
    .container {
        padding-inline: 28px;
    }

    .nav-wrap {
        height: 70px;
    }

    .brand img {
        width: 178px;
    }

    .main-nav ul {
        gap: 28px;
    }

    .main-nav a,
    .auth-link,
    .register-btn {
        font-size: 11px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content p {
        max-width: none;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .testimonials {
        padding: 64px 0 72px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-author {
        font-size: clamp(20px, 7vw, 34px);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-logo {
        width: 210px;
    }

    .footer-tagline {
        font-size: 14px;
        max-width: 100%;
    }

    .footer-col h4 {
        font-size: 18px;
    }

    .footer-col a,
    .footer-col p {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .container {
        padding-inline: 20px;
    }

    .main-nav {
        display: none;
    }

    .hero {
        padding: 40px 0 48px;
    }

    .hero-content h1 {
        font-size: clamp(34px, 9vw, 52px);
    }

    .brand img {
        width: 160px;
    }

    .footer-logo {
        width: 180px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-col a,
    .footer-col p {
        font-size: 13px;
    }
}

/* ════════════════════════
   Header/Footer Igual Ofertas
════════════════════════ */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--header-glass);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    flex-shrink: 0;
}

header .logo img {
    display: block;
    width: 210px;
    max-width: 100%;
    height: auto;
    transform: translateY(1px);
}

header .logo-ring {
    display: inline-block;
    width: 11px;
    height: 11px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    margin: 0 1px;
    flex-shrink: 0;
}

header nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

header nav a {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--nav-text);
    text-decoration: none;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

header nav a.active {
    color: var(--gold);
    font-weight: 600;
    border-bottom-color: var(--gold);
}

header nav a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

header .header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

header .btn-ingresar {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--nav-text);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

header .btn-registro {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

header .btn-registro:hover {
    background: var(--gold-hover);
}

header .cart-icon {
    width: 19px;
    height: 19px;
    color: var(--nav-text);
    cursor: pointer;
}

.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 8px;
}

.cart-badge {
    position: absolute;
    top: -7px;
    right: -12px;
    background: #e74c3c;
    color: white;
    border-radius: 999px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    border: 2px solid #fdfbf7;
    z-index: 101;
    pointer-events: none;
}

.cart-badge.hidden {
    display: none;
}

footer {
    background: var(--footer-bg);
    color: var(--footer-muted);
    padding: 48px 48px 0;
}

footer .footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

footer .footer-logo {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: var(--footer-link);
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    filter: none;
    width: auto;
}

footer .footer-logo img {
    display: block;
    width: 250px;
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

footer .footer-brand p {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--footer-muted);
    line-height: 1.6;
    max-width: 260px;
}

footer .footer-col h4 {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--footer-link);
    margin-bottom: 16px;
}

footer .footer-col ul {
    list-style: none;
    display: block;
}

footer .footer-col ul li {
    margin-bottom: 9px;
}

footer .footer-col ul li a {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--footer-muted);
    text-decoration: none;
    transition: color 0.2s;
}

footer .footer-col ul li a:hover {
    color: var(--footer-link);
}

footer .footer-col p {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--footer-muted);
}

footer .social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

footer .social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.26);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

footer .social-icons a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);
}

footer .social-icons img {
    width: 18px;
    height: 18px;
    display: block;
}

footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    text-align: center;
}

footer .footer-bottom p {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--footer-muted);
}

@media (max-width: 768px) {
    header {
        padding: 0 16px;
    }

    header nav {
        display: none;
    }

    footer .footer-top {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 36px 20px 0;
    }
}

/* ════════════════════════
   NUEVAS SECCIONES INDEX
════════════════════════ */

.featured-products {
    background: var(--bg);
    padding: 84px 0;
}

.featured-head {
    text-align: center;
    margin-bottom: 30px;
}

.featured-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 3.6vw, 52px);
    color: var(--dark-text);
    margin-bottom: 10px;
}

.featured-head p {
    color: var(--mid-gray);
    font-size: 1rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.featured-card {
    border: 1px solid var(--border);
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(42, 36, 33, 0.08);
}

.featured-image-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f2ed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.featured-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.featured-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 5px;
}

.featured-badge {
    display: inline-flex;
    background: var(--gold);
    color: #fff;
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    padding: 3px 7px;
    margin-bottom: 12px;
}

.featured-body h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 8px;
}

.featured-body p {
    color: var(--mid-gray);
    line-height: 1.55;
    font-size: 11.5px;
    flex: 1;
    margin-bottom: 16px;
}

.featured-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    gap: 12px;
}

.featured-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.01em;
}

.featured-btn {
    background: var(--gold);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    border: none;
    border-radius: 2px;
    padding: 7px 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.15s ease;
}

.featured-card:hover .featured-btn {
    background: var(--gold-hover);
    transform: scale(1.03);
}

.promo-banner {
    background: var(--dark-text);
    padding: 74px 0;
}

.promo-banner-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
}

.promo-label {
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.promo-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 3.6vw, 54px);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 14px;
}

.promo-subtitle {
    color: var(--mid-gray);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 24px;
}

.promo-btn {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.73rem;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 5px;
    transition: background 0.2s ease, color 0.2s ease;
}

.promo-btn:hover {
    background: var(--gold);
    color: #fff;
}

.promo-art {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-circle {
    width: clamp(170px, 20vw, 280px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid rgba(198, 155, 123, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 16px rgba(198, 155, 123, 0.08);
}

.promo-circle-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 6vw, 84px);
    color: var(--gold);
    line-height: 1;
}

.customer-testimonials {
    background: var(--features-bg);
    padding: 84px 0 90px;
}

.customer-testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 3.4vw, 50px);
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 36px;
}

.customer-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.customer-testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
}

.customer-stars {
    color: var(--gold);
    letter-spacing: 0.16em;
    margin-bottom: 14px;
}

.customer-quote {
    color: var(--mid-gray);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 18px;
}

.customer-person {
    display: flex;
    align-items: center;
    gap: 11px;
}

.customer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.customer-name {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 2px;
}

.customer-role {
    color: var(--mid-gray);
    font-size: 0.85rem;
}

.brands-showcase {
    background: var(--bg);
    padding: 44px 0 74px;
}

.brands-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 4vw, 66px);
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 24px;
}

.brands-carousel {
    display: grid;
    gap: 16px;
}

.brands-row {
    overflow: hidden;
    width: 100%;
}

.brands-track {
    display: flex;
    width: max-content;
    gap: 14px;
}

.brands-group {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.brands-row-left .brands-track {
    animation: brands-slide-left 34s linear infinite;
}

.brands-row-right .brands-track {
    animation: brands-slide-right 34s linear infinite;
}

.brands-row:hover .brands-track {
    animation-play-state: paused;
}

.brand-logo-card {
    width: clamp(148px, 13vw, 248px);
    height: clamp(86px, 7.2vw, 116px);
    border: 1px solid #d7d6da;
    border-radius: 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-logo-card img {
    width: 100%;
    height: 70%;
    object-fit: contain;
    display: block;
}

.brand-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(42, 36, 33, 0.1);
}

@keyframes brands-slide-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 7px));
    }
}

@keyframes brands-slide-right {
    from {
        transform: translateX(calc(-50% - 7px));
    }
    to {
        transform: translateX(0);
    }
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.45);
    z-index: 200;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

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

@media (max-width: 1024px) {
    .featured-grid,
    .customer-testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promo-banner-grid {
        grid-template-columns: 1fr;
    }

    .promo-art {
        justify-content: flex-start;
    }

    .brands-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 20px;
    }

    .brands-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .featured-products,
    .promo-banner,
    .customer-testimonials,
    .brands-showcase {
        padding: 56px 0;
    }

    .featured-grid,
    .customer-testimonials-grid,
    .brands-list {
        grid-template-columns: 1fr;
    }

    .brand-logo-card {
        width: clamp(128px, 38vw, 198px);
        height: 86px;
    }

    .promo-copy h2 {
        font-size: clamp(30px, 10vw, 44px);
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ════════════════════════
   AJUSTE DE TITULOS
════════════════════════ */
.features h2,
.featured-head h2,
.customer-testimonials h2,
.brands-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 4.6vw, 66px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--dark-text);
}

@media (max-width: 768px) {
    .features h2,
    .featured-head h2,
    .customer-testimonials h2,
    .brands-title {
        font-size: clamp(34px, 9vw, 48px);
    }
}

/* Iconos en features */
.feature-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    background: rgba(198, 155, 123, 0.12);
    border: 1px solid rgba(198, 155, 123, 0.35);
}

.feature-icon {
    width: 26px;
    height: 26px;
    display: block;
}