/* style.css */
/* Estilos generales */
/* style.css - Versión actualizada con colores institucionales y tipografía corporativa */

/* ===== RESET Y VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores institucionales */
    --black: #000000;
    --gold: #e0a558;
    --blue: #04183d;
    
    /* Variaciones de colores */
    --dark-gold: #c08a4a;
    --light-gold: #f0c58a;
    --dark-blue: #030f26;
    --light-blue: #0a265c;
    
    /* Colores neutros */
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

/* ===== TIPOGRAFÍA CORPORATIVA ===== */
body {
    font-family: 'Open Sans', sans-serif; /* Astrid alternativa */
    background-color: var(--black);
    color: var(--light-gray);
    line-height: 1.6;
    font-weight: 400;
}

/* LATO Family Font - Para titulares (tipografía oficial) */
h1, h2, h3, h4, h5, h6,
.logo-text,
.section-title,
.product-name,
.cart-header h3,
.modal-content h3,
.footer-links h4,
.footer-contact h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Nord alternativa - Para textos destacados */
.hero-content p,
.about-content p,
.product-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* BEHIND The Nineties alternativa - Para elementos especiales */
.guarantee-badge,
.filter-btn,
.feature h4,
.footer-logo p {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* ===== ESTILOS GENERALES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--black);
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(224, 165, 88, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 165, 88, 0.3);
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--gold) 100%);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--black);
}

.gold {
    color: var(--gold);
}

.blue {
    color: var(--blue);
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    color: var(--white);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--blue) 100%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ===== HEADER ACTUALIZADO ===== */
header {
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(4, 24, 61, 0.3);
    border-bottom: 1px solid rgba(224, 165, 88, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--blue) 100%);
    bottom: -5px;
    left: 0;
    border-radius: 1px;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 22px;
    color: var(--white);
    transition: all 0.3s;
    background: var(--blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(224, 165, 88, 0.3);
}

.cart-icon:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--black);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===== HERO SECTION ACTUALIZADA ===== */
.hero {
    padding-top: 140px;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%2304183d" opacity="0.1"/></svg>');
    background-size: cover;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-content p .highlight {
    background: linear-gradient(90deg, rgba(224, 165, 88, 0.2) 0%, rgba(4, 24, 61, 0.2) 100%);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 10px 20px;
    background: linear-gradient(90deg, rgba(224, 165, 88, 0.1) 0%, rgba(4, 24, 61, 0.1) 100%);
    border: 1px solid rgba(224, 165, 88, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.guarantee-badge i {
    color: var(--gold);
    font-size: 18px;
    margin-right: 10px;
}

.guarantee-badge span {
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(224, 165, 88, 0.1);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* ===== PRODUCTOS ACTUALIZADOS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(4, 24, 61, 0.2) 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(224, 165, 88, 0.1);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(224, 165, 88, 0.15);
    border-color: rgba(224, 165, 88, 0.3);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.8) 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-category {
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.product-description {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 15px;
    height: 40px;
    overflow: hidden;
}

.product-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    justify-content: space-between;
}

.add-to-cart {
    background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--black);
    transform: scale(1.05);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--medium-gray);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(224, 165, 88, 0.2);
}

/* ===== CARRITO ACTUALIZADO ===== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    justify-content: flex-end;
}

.cart-sidebar {
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(224, 165, 88, 0.2);
    border-left: 1px solid rgba(224, 165, 88, 0.2);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(224, 165, 88, 0.2);
}

.cart-header h3 {
    font-size: 24px;
    display: flex;
    align-items: center;
    color: var(--white);
}

.cart-header h3 i {
    margin-right: 10px;
    color: var(--gold);
}

.close-cart {
    background: none;
    border: none;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    color: var(--gold);
    background: rgba(224, 165, 88, 0.1);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.empty-cart-message {
    text-align: center;
    color: #aaa;
    font-style: italic;
    padding: 40px 0;
    font-family: 'Montserrat', sans-serif;
}

.cart-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(224, 165, 88, 0.1);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 15px;
    border: 1px solid rgba(224, 165, 88, 0.2);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
    font-family: 'Lato', sans-serif;
}

.cart-item-price {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.cart-item-quantity button {
    background: rgba(224, 165, 88, 0.1);
    color: var(--white);
    border: 1px solid rgba(224, 165, 88, 0.3);
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.cart-item-quantity button:hover {
    background: var(--gold);
    color: var(--black);
}

.cart-item-quantity span {
    margin: 0 10px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: transparent;
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
}

.remove-item:hover {
    background: #ff6b6b;
    color: var(--white);
}

.cart-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(224, 165, 88, 0.2);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    color: var(--white);
}

.total-price {
    color: var(--gold);
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--black);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 165, 88, 0.3);
}

/* ===== SECCIÓN NOSOTROS ACTUALIZADA ===== */
.about {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,100 L100,0 L100,100 Z" fill="%23e0a558" opacity="0.05"/></svg>');
    background-size: cover;
}

.about-content p {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 18px;
    color: #ddd;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(30, 30, 30, 0.7);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(224, 165, 88, 0.1);
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-10px);
    border-color: rgba(224, 165, 88, 0.3);
    box-shadow: 0 15px 30px rgba(224, 165, 88, 0.1);
}

.feature i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(224, 165, 88, 0.1) 0%, rgba(4, 24, 61, 0.1) 100%);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

.feature h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
}

.feature p {
    font-size: 16px;
    color: #aaa;
    margin: 0;
}

/* ===== FOOTER ACTUALIZADO ===== */
footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--blue) 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(224, 165, 88, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: #aaa;
    font-family: 'Poppins', sans-serif;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: #1a2632;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(224, 165, 88, 0.2);
    color: #777;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

/* ===== MODAL ACTUALIZADO ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 1px solid rgba(224, 165, 88, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--gold);
    background: rgba(224, 165, 88, 0.1);
}

.modal-icon {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.modal-content p {
    margin-bottom: 25px;
    color: #aaa;
    font-family: 'Montserrat', sans-serif;
}

.modal-content .btn {
    margin: 0 10px 10px;
    min-width: 150px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding: 15px;
    }
    
    nav ul {
        margin-top: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .cart-sidebar {
        max-width: 100%;
    }
    
    .modal-content .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-image {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
    
    .logo {
        gap: 0;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .product-name {
        font-size: 18px;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    .add-to-cart {
        padding: 10px 15px;
        font-size: 14px;
    }
}
/* Estilos para la versión solo logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 4px; /* Opcional para bordes redondeados */
    padding: 3px; /* Espacio alrededor del logo */
    background-color: rgba(255, 255, 255, 0.1); /* Fondo sutil si es necesario */
}

/* Hover effect opcional */
.logo-image:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .logo-image {
        height: 45px;
        max-width: 160px;
    }
    
    header .container {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
        max-width: 140px;
    }
}

/* ===== SECCIÓN DE CATEGORÍAS PRINCIPALES ===== */
.main-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.main-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%23e0a558" opacity="0.03"/></svg>');
    background-size: cover;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(224, 165, 88, 0.2);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(224, 165, 88, 0.2);
    border-color: rgba(224, 165, 88, 0.4);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.category-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.category-content h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
}

.category-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ddd;
    max-width: 400px;
}

.category-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--black);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    margin-top: 10px;
}

.category-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(224, 165, 88, 0.3);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

/* ===== SECCIÓN DE PROMOCIONES ===== */
.promotions {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--black) 100%);
}

.promo-banner {
    display: flex;
    background: linear-gradient(135deg, rgba(224, 165, 88, 0.1) 0%, rgba(4, 24, 61, 0.2) 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(224, 165, 88, 0.2);
    margin-bottom: 50px;
}

.promo-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-badge {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
    align-self: flex-start;
}

.promo-content h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.3;
}

.promo-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ddd;
}

#view-promotions {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
}

#view-promotions:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--black);
}

.promo-image {
    flex: 1;
    min-width: 300px;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* ===== PRODUCTOS DESTACADOS EN PROMOCIONES ===== */
.promo-product-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(4, 24, 61, 0.2) 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(224, 165, 88, 0.1);
    position: relative;
}

.promo-product-card::before {
    content: 'OFERTA';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.promo-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(224, 165, 88, 0.15);
    border-color: rgba(224, 165, 88, 0.3);
}

.promo-product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.promo-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.promo-product-card:hover .promo-product-image img {
    transform: scale(1.05);
}

.promo-product-info {
    padding: 20px;
}

.promo-product-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.promo-product-description {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 10px;
    height: 36px;
    overflow: hidden;
}

.promo-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
}

.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.discount {
    font-size: 14px;
    font-weight: 700;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

/* ===== CABECERA DE PRODUCTOS ===== */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        height: 350px;
    }
    
    .promo-banner {
        flex-direction: column;
    }
    
    .promo-image {
        order: -1;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-content {
        padding: 30px;
    }
    
    .category-content h3 {
        font-size: 28px;
    }
    
    .category-content p {
        font-size: 16px;
    }
    
    .promo-content h3 {
        font-size: 24px;
    }
    
    .promo-content p {
        font-size: 16px;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-buttons {
        align-self: stretch;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .category-card {
        height: 300px;
    }
    
    .category-content {
        padding: 20px;
    }
    
    .category-content h3 {
        font-size: 24px;
    }
    
    .promo-content {
        padding: 20px;
    }
    
    .promo-content h3 {
        font-size: 20px;
    }
    
    .filter-buttons {
        justify-content: flex-start;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
        margin: 0 5px 5px 0;
    }
}

/* ===== SECCIÓN DE TIENDA FÍSICA ===== */
.store-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
}

.store-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,100 L0,100 Z" fill="%23e0a558" opacity="0.05"/></svg>');
    background-size: cover;
}

.store-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.store-info {
    flex: 1;
    min-width: 300px;
}

.store-info p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
    line-height: 1.7;
}

.store-details {
    margin-bottom: 40px;
}

.detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    transition: transform 0.3s;
}

.detail:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.08);
}

.detail i {
    font-size: 24px;
    color: var(--gold);
    margin-right: 15px;
    margin-top: 5px;
}

.detail h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.detail p {
    margin: 0;
    font-size: 16px;
    color: #bbb;
}

.store-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--black);
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(224, 165, 88, 0.3);
}

.store-gallery {
    flex: 1;
    min-width: 300px;
}

.main-store-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(224, 165, 88, 0.2);
}

.main-store-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.main-store-image:hover img {
    transform: scale(1.03);
}

.store-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    height: 150px;
    border: 1px solid rgba(224, 165, 88, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== SECCIÓN DE RESEÑAS ===== */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--black) 100%);
}

.section-subtitle {
    text-align: center;
    color: #bbb;
    font-size: 18px;
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(4, 24, 61, 0.2) 100%);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(224, 165, 88, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(224, 165, 88, 0.1);
    border-color: rgba(224, 165, 88, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid var(--gold);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.review-stars {
    color: var(--gold);
    font-size: 14px;
}

.review-date {
    color: #999;
    font-size: 14px;
}

.review-text {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(224, 165, 88, 0.3);
}

.review-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.verified-buyer {
    color: var(--gold);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.verified-buyer i {
    margin-right: 5px;
}

/* ===== FORMULARIO DE RESEÑAS ===== */
.review-form-container {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(4, 24, 61, 0.2) 100%);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(224, 165, 88, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.review-form-container h3 {
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--white);
}

.review-form-container > p {
    color: #bbb;
    margin-bottom: 30px;
}

.review-form {
    margin-top: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(224, 165, 88, 0.2);
}

.rating-input {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.rating-input .star {
    font-size: 28px;
    color: #555;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-input .star:hover,
.rating-input .star.active {
    color: var(--gold);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #ddd;
}

.checkbox-label input {
    width: auto;
    margin-right: 10px;
}

.review-form button {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
}

/* ===== RESPONSIVE PARA LAS NUEVAS SECCIONES ===== */
@media (max-width: 1024px) {
    .store-content {
        flex-direction: column;
    }
    
    .store-info,
    .store-gallery {
        width: 100%;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .store-details {
        margin-bottom: 30px;
    }
    
    .main-store-image img {
        height: 250px;
    }
    
    .gallery-item {
        height: 120px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-form-container {
        padding: 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .review-form-container h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .store-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }
    
    .review-form-container {
        padding: 20px;
    }
    
    .rating-input .star {
        font-size: 24px;
    }
}

/* ===== ESTILOS ESPECÍFICOS PARA PÁGINA DE PRODUCTOS ===== */
.products-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
    min-height: 80vh;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--white);
}

.page-subtitle {
    font-size: 18px;
    color: #bbb;
    max-width: 600px;
    margin: 0 auto;
}

.filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
    background: rgba(30, 30, 30, 0.7);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(224, 165, 88, 0.1);
}

.sort-options select {
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border: 1px solid rgba(224, 165, 88, 0.3);
    padding: 10px 15px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    cursor: pointer;
    min-width: 200px;
}

.sort-options select:focus {
    outline: none;
    border-color: var(--gold);
}

.no-products {
    text-align: center;
    padding: 60px 20px;
}

.no-products i {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-products h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.no-products p {
    color: #999;
    font-size: 16px;
}

/* ===== ESTILOS PARA BOTONES DE CATEGORÍA EN INDEX.HTML ===== */
.category-btn {
    cursor: pointer;
}

/* ===== RESPONSIVE PARA PÁGINA DE PRODUCTOS ===== */
@media (max-width: 768px) {
    .products-section {
        padding: 80px 0 60px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .filter-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sort-options select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
}

/* ===== BUSCADOR MEJORADO ===== */
.filter-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    background: rgba(30, 30, 30, 0.7);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(224, 165, 88, 0.1);
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 18px;
    opacity: 0.7;
}

#search-input {
    width: 100%;
    padding: 15px 45px 15px 45px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(224, 165, 88, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

#search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(224, 165, 88, 0.3);
    background: rgba(0, 0, 0, 0.7);
}

#search-input::placeholder {
    color: #888;
    font-style: italic;
}

.clear-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s;
}

.clear-search:hover {
    color: var(--gold);
}

.filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.search-results-info {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(224, 165, 88, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(224, 165, 88, 0.2);
}

.search-results-info p {
    color: var(--white);
    font-size: 16px;
}

.search-results-info span {
    color: var(--gold);
    font-weight: 700;
}

/* Highlight de búsqueda */
.highlight {
    background: rgba(224, 165, 88, 0.3);
    color: var(--gold);
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .sort-options select {
        width: 100%;
    }
    
    #search-input {
        font-size: 14px;
        padding: 12px 40px;
    }
}
/* Reseñas */
.reviews-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.reviewer-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.review-rating {
    color: #ffc107;
    letter-spacing: 2px;
}

.review-text {
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

.review-date {
    font-size: 0.8rem;
    color: #999;
    text-align: right;
}

.review-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-form-container h3 {
    text-align: center;
    margin-bottom: 10px;
}

.review-form-container p {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c6a43b;
    box-shadow: 0 0 0 2px rgba(198, 164, 59, 0.2);
}

.review-form-container .btn {
    width: 100%;
    background-color: #c6a43b;
    color: white;
    border: none;
    cursor: pointer;
}

.review-form-container .btn:hover {
    background-color: #a8892c;
}

/* Modales de pago */
.payment-modal, .transfer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding: 20px 0;
}

.payment-modal-content, .transfer-modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
    margin: auto;
}

.close-payment-modal, .close-transfer-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.payment-option {
    padding: 15px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.paypal-btn {
    background: #ffc439;
    color: #000;
}

.paypal-btn:hover {
    background: #f0b400;
}

.bank-transfer-btn {
    background: #2c3e50;
    color: white;
}

.bank-transfer-btn:hover {
    background: #1a2632;
}

.bank-details {
    text-align: left;
    background: #1a2632;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.bank-details p {
    margin: 10px 0;
    color: #ffffff;
}

.bank-details strong {
    color: #f0c040;
}

.bank-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f0c040 !important;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 8px;
    margin-bottom: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qr-container {
    text-align: center;
    margin: 15px 0;
}

.qr-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 8px;
}

.important {
    color: #e67e22;
    font-weight: bold;
}

.close-transfer-final {
    margin-top: 10px;
}

/* ===== MODAL DETALLE DE PRODUCTO ===== */
.product-detail-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.product-detail-overlay.active {
    display: flex;
}

.product-detail-modal {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--dark-blue) 100%);
    border: 1px solid rgba(224, 165, 88, 0.3);
    border-radius: 16px;
    display: flex;
    gap: 0;
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.close-detail-modal {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(224, 165, 88, 0.4);
    color: var(--gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.close-detail-modal:hover {
    background: var(--gold);
    color: var(--black);
}

.detail-image {
    width: 340px;
    min-width: 340px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    flex: 1;
    padding: 36px 32px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(224, 165, 88, 0.12);
    border: 1px solid rgba(224, 165, 88, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

.detail-name {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.detail-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.detail-acordes-section {
    border-top: 1px solid rgba(224, 165, 88, 0.15);
    padding-top: 14px;
}

.detail-acordes-section h4 {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.acordes-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.acorde-pill {
    display: flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.4px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    transition: filter 0.2s, transform 0.15s;
    cursor: default;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.acorde-pill:hover {
    filter: brightness(1.15);
    transform: translateX(4px);
}

.detail-price {
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
}

.detail-add-to-cart {
    margin-top: auto;
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Cursor pointer en tarjetas para indicar que son clickeables */
.product-card {
    cursor: pointer;
}

@media (max-width: 680px) {
    .product-detail-modal {
        flex-direction: column;
        max-height: 92vh;
        overflow-y: auto;
    }

    .detail-image {
        width: 100%;
        min-width: unset;
        height: 240px;
    }

    .detail-info {
        padding: 24px 20px;
    }

    .detail-name {
        font-size: 18px;
    }
}