/* ===================================
   VARIABLES Y RESET
   =================================== */
:root {
    --color-gold: #C8A14B;
    --color-dark: #1a1a1a;
    --color-gray: #666;
    --color-border: #e5e5e5;
    --color-bg-light: #fafafa;
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--color-dark);
    line-height: 1.6;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

/* ===================================
   CINTA SUPERIOR
   =================================== */
.top-ribbon {
    background: var(--color-dark);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===================================
   HEADER
   =================================== */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.main-nav {
    display: none;
}

.cart-icon {
    background: none;
    font-size: 1.2rem;
    position: relative;
    padding: 8px;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--color-gold);
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ===================================
   HERO BANNER
   =================================== */
.hero-banner {
    padding: 40px 16px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.hero-content h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero-content p {
    color: var(--color-gray);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--color-dark);
    color: #fff;
}

.btn-primary:hover {
    background: #333;
}

.btn-secondary {
    background: #fff;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-secondary:hover {
    background: var(--color-dark);
    color: #fff;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--radius);
}

/* ===================================
   SECCIONES
   =================================== */
.products-section,
.categories-section,
.reviews-section {
    padding: 48px 16px;
}

.bg-light {
    background: var(--color-bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.section-header p {
    color: var(--color-gray);
    font-size: 0.85rem;
}

.link-see-all {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.section-title-center {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
}

/* ===================================
   GRID DE PRODUCTOS
   =================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--color-dark);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.product-tag.tag-favorite {
    background: var(--color-gold);
}

.product-info {
    padding: 12px;
}

.product-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.btn-add-cart {
    width: 100%;
    padding: 10px;
    background: var(--color-dark);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.btn-add-cart:hover {
    background: #333;
}

/* ===================================
   GRID DE CATEGORÍAS
   =================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.category-box {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
}

.category-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-box:hover img {
    transform: scale(1.05);
}

.category-box h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 16px;
    font-size: 1rem;
}

/* ===================================
   RESEÑAS
   =================================== */
.reviews-grid {
    display: grid;
    gap: 16px;
}

.review-card {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.review-stars {
    font-size: 1rem;
    margin-bottom: 12px;
}

.review-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.review-author {
    color: var(--color-gray);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background: var(--color-dark);
    color: #fff;
    padding: 40px 16px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    gap: 28px;
    margin-bottom: 28px;
}

.footer-col h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-col p,
.footer-col a {
    font-size: 0.85rem;
    color: #ccc;
    display: block;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #999;
}

/* ===================================
   CARRITO FAB
   =================================== */
.cart-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--color-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 999;
}

.cart-fab-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--color-gold);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ===================================
   DRAWER DEL CARRITO
   =================================== */
.cart-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.cart-drawer-backdrop.active {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-size: 1.2rem;
}

.cart-drawer-close {
    background: none;
    font-size: 2rem;
    color: var(--color-gray);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--color-border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.btn-checkout {
    width: 100%;
    padding: 14px;
    background: var(--color-dark);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
}

/* ===================================
   RESPONSIVE DESKTOP
   =================================== */
@media (min-width: 768px) {
    .main-nav {
        display: flex;
        gap: 24px;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .main-nav a:hover {
        color: var(--color-gold);
    }

    .nav-offers {
        color: var(--color-gold);
    }

    .hero-banner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        text-align: left;
        padding: 60px 40px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   CHECKOUT PAGE - STYLES
   =================================== */

.checkout-page {
    background: #f9f9f9;
    min-height: 100vh;
}

.page--checkout {
    padding-bottom: 40px;
}

/* Header simplificado para checkout */
.checkout-page .site-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
}

.checkout-page .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.checkout-page .logo-mark {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #C8A14B 0%, #E4D4A7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text span:first-child {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
}

.logo-text span:last-child {
    font-size: 0.7rem;
    color: #666;
}

/* ===================================
   LAYOUT DEL CHECKOUT
   =================================== */
.checkout-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px 16px;
    display: grid;
    gap: 24px;
}

/* ===================================
   RESUMEN DE COMPRA
   =================================== */
.checkout-summary {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.checkout-summary .section-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.checkout-summary .section-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* Items del carrito */
.checkout-items {
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item__image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.checkout-item__info {
    flex: 1;
}

.checkout-item__name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a1a1a;
    line-height: 1.3;
}

.checkout-item__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #C8A14B;
}

/* Total */
.checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid #e5e5e5;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* ===================================
   MÉTODOS DE PAGO
   =================================== */
.checkout-actions {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.checkout-actions__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.checkout-pay-option {
    margin-bottom: 12px;
}

.checkout-pay-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkout-pay-btn:hover {
    border-color: #C8A14B;
    background: #fffdf7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 161, 75, 0.15);
}

.checkout-pay-btn:active {
    transform: translateY(0);
}

/* Logos de bancos en botones */
.checkout-bank-logo-inbtn {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Variantes de botones */
.checkout-pay-btn--bancolombia:hover {
    border-color: #FFDD00;
    background: #fffef5;
}

.checkout-pay-btn--bogota:hover {
    border-color: #003DA5;
    background: #f0f5ff;
}

.checkout-pay-btn--card:hover {
    border-color: #1A1F71;
    background: #f5f6ff;
}

/* Botón volver */
.checkout-back-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-back-btn:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

/* ===================================
   RESPONSIVE DESKTOP
   =================================== */
@media (min-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr 400px;
        gap: 32px;
        padding: 40px 24px;
    }

    .checkout-summary {
        padding: 32px;
    }

    .checkout-actions {
        padding: 32px;
    }

    .checkout-item {
        padding: 20px 0;
    }

    .checkout-item__image {
        width: 100px;
        height: 100px;
    }

    .checkout-summary .section-title {
        font-size: 1.6rem;
    }

    .checkout-pay-btn {
        padding: 18px 24px;
        font-size: 1rem;
    }

    .checkout-bank-logo-inbtn {
        width: 40px;
        height: 40px;
    }
}

/* ===================================
   ANIMACIONES
   =================================== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.checkout-item {
    animation: slideIn 0.3s ease;
}

.checkout-pay-option {
    animation: slideIn 0.4s ease;
}

/* ===================================
   BREADCRUMB
   =================================== */
.breadcrumb {
    background: #f9f9f9;
    padding: 12px 0;
    font-size: 0.85rem;
    color: #666;
}

.breadcrumb a {
    color: #666;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--color-gold);
}

/* ===================================
   TAGS DE PRODUCTOS
   =================================== */
.product-tag.tag-sale {
    background: #FF4444;
    color: white;
    font-weight: 700;
}

.product-tag.tag-favorite {
    background: #FFD700;
    color: #1a1a1a;
}

/* ===================================
   PRECIOS CON DESCUENTO
   =================================== */
.product-price-old {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    margin: 4px 0 2px;
}

/* ===================================
   TOP RIBBON OFERTAS
   =================================== */
.top-ribbon span:first-child {
    font-weight: 600;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.feature-box p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* ===================================
   CATEGORIES GRID
   =================================== */
.category-box p {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 600;
}

/* ===================================
   LUXURY DESIGN SYSTEM
   =================================== */

:root {
    --luxury-gold: #C9A961;
    --luxury-dark: #1a1a1a;
    --luxury-light: #f8f7f4;
    --luxury-white: #ffffff;
    --luxury-gray: #6b6b6b;
}

* {
    font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
}

/* TOP RIBBON LUXURY */
.top-ribbon {
    background: var(--luxury-dark);
    color: var(--luxury-gold);
    text-align: center;
    padding: 12px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 300;
}

.top-ribbon span {
    margin: 0 15px;
}

/* HEADER LUXURY */
.site-header {
    border-bottom: 1px solid #e5e5e5;
}

.main-nav a {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

.nav-special {
    color: var(--luxury-gold) !important;
}

/* HERO LUXURY */
.hero-banner-luxury {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 600px;
    background: linear-gradient(135deg, #f8f7f4 0%, #ffffff 100%);
    padding: 80px 60px;
}

.hero-content-luxury {
    max-width: 550px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-content-luxury h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--luxury-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content-luxury p {
    font-size: 1.1rem;
    color: var(--luxury-gray);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary-luxury {
    background: var(--luxury-dark);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s;
}

.btn-primary-luxury:hover {
    background: var(--luxury-gold);
    color: var(--luxury-dark);
}

.btn-secondary-luxury {
    background: transparent;
    color: var(--luxury-dark);
    padding: 16px 40px;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1.5px solid var(--luxury-dark);
    border-radius: 0;
    transition: all 0.3s;
}

.btn-secondary-luxury:hover {
    background: var(--luxury-dark);
    color: white;
}

.hero-image-luxury img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* PRODUCTS SECTION LUXURY */
.products-section-luxury {
    padding: 100px 0;
}

.section-header-luxury {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin-bottom: 10px;
    font-weight: 500;
}

.section-header-luxury h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--luxury-dark);
    margin-bottom: 15px;
}

.section-header-luxury p {
    font-size: 1rem;
    color: var(--luxury-gray);
    font-weight: 300;
}

.products-grid-luxury {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card-luxury {
    background: white;
    border: 1px solid #e8e8e8;
    transition: all 0.4s ease;
}

.product-card-luxury:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.product-image-luxury {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image-luxury img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-luxury:hover .product-image-luxury img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--luxury-dark);
    color: white;
    padding: 6px 14px;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.badge-new {
    background: var(--luxury-gold);
    color: var(--luxury-dark);
}

.product-info-luxury {
    padding: 25px;
}

.product-info-luxury h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--luxury-dark);
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
}

.product-specs {
    font-size: 0.75rem;
    color: var(--luxury-gray);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price-luxury {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--luxury-dark);
    margin-bottom: 20px;
}

.btn-add-luxury {
    width: 100%;
    background: transparent;
    color: var(--luxury-dark);
    border: 1.5px solid var(--luxury-dark);
    padding: 14px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-add-luxury:hover {
    background: var(--luxury-dark);
    color: white;
}

/* CATEGORIES LUXURY */
.categories-luxury {
    padding: 100px 0;
    background: var(--luxury-light);
}

.categories-grid-luxury {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card-luxury {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s;
}

.category-card-luxury:hover {
    transform: translateY(-8px);
}

.category-image-luxury {
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 20px;
}

.category-image-luxury img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card-luxury:hover .category-image-luxury img {
    transform: scale(1.1);
}

.category-info-luxury {
    text-align: center;
}

.category-info-luxury h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--luxury-dark);
    margin-bottom: 5px;
}

.category-count {
    font-size: 0.85rem;
    color: var(--luxury-gold);
    font-weight: 500;
}

/* LIMITED EDITION */
.limited-edition {
    padding: 100px 0;
    background: var(--luxury-dark);
    color: white;
}

.limited-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.limited-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin-bottom: 15px;
}

.limited-text h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
}

.limited-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 35px;
    font-weight: 300;
}

.limited-image img {
    width: 100%;
    height: auto;
}

/* VALUES SECTION */
.values-section {
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.value-card {
    text-align: center;
}

.value-icon {
    color: var(--luxury-gold);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--luxury-dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--luxury-gray);
    line-height: 1.6;
    font-weight: 300;
}

/* TESTIMONIALS LUXURY */
.testimonials-luxury {
    padding: 100px 0;
    background: var(--luxury-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border: 1px solid #e8e8e8;
}

.testimonial-stars {
    color: var(--luxury-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--luxury-gray);
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 0.9rem;
    color: var(--luxury-dark);
    font-weight: 500;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--luxury-gray);
    font-weight: 300;
}

/* FOOTER LUXURY */
.site-footer-luxury {
    background: var(--luxury-dark);
    color: #ccc;
    padding: 80px 0 30px;
}

.footer-grid-luxury {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col-luxury h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-col-luxury h4 {
    font-size: 0.9rem;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-col-luxury p {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 10px;
    font-weight: 300;
}

.footer-col-luxury a {
    display: block;
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 12px;
    transition: color 0.3s;
    font-weight: 300;
}

.footer-col-luxury a:hover {
    color: var(--luxury-gold);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    color: var(--luxury-gold);
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-bottom-luxury {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #888;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--luxury-gold);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-banner-luxury {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }

    .hero-content-luxury h1 {
        font-size: 2.5rem;
    }

    .limited-content {
        grid-template-columns: 1fr;
    }

    .footer-grid-luxury {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-luxury {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ===================================
   CATEGORÍAS ENHANCED - COMPACTAS
   =================================== */

.categories-grid-luxury-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.category-card-enhanced {
    text-decoration: none;
    color: inherit;
    display: block;
    background: white;
    border: 1px solid #e8e8e8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.category-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--luxury-gold);
}

.category-image-enhanced {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.category-image-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card-enhanced:hover .category-image-enhanced img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s;
}

.category-card-enhanced:hover .category-overlay {
    opacity: 1;
}

.category-cta {
    color: white;
    font-size: 0.75rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 12px 24px;
    background: var(--luxury-gold);
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

.category-card-enhanced:hover .category-cta {
    background: white;
    color: var(--luxury-dark);
    transform: translateY(-3px);
}

.category-info-enhanced {
    padding: 20px;
    text-align: center;
}

.category-info-enhanced h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--luxury-dark);
    margin-bottom: 6px;
    font-family: 'Cormorant Garamond', serif;
}

.category-description {
    font-size: 0.75rem;
    color: var(--luxury-gray);
    margin-bottom: 10px;
    font-weight: 300;
    font-style: italic;
}

.category-price {
    display: block;
    font-size: 0.85rem;
    color: var(--luxury-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .categories-grid-luxury-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-info-enhanced {
        padding: 15px;
    }

    .category-info-enhanced h3 {
        font-size: 1rem;
    }

    .category-description {
        font-size: 0.7rem;
    }

    .category-price {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .categories-grid-luxury-enhanced {
        grid-template-columns: 1fr;
    }
}
/* ===================================
   EDICIÓN LIMITADA ENHANCED
   =================================== */

.limited-edition-enhanced {
    position: relative;
    padding: 120px 0;
    background-image: url('https://images.unsplash.com/photo-1611591437281-460bfbe1220a?w=1920&h=800&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.limited-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.85) 100%);
}

.limited-content-enhanced {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.limited-tag-enhanced {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin-bottom: 15px;
    font-weight: 500;
    padding: 8px 24px;
    border: 1px solid var(--luxury-gold);
}

.limited-content-enhanced h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
    font-family: 'Cormorant Garamond', serif;
}

.limited-content-enhanced>p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d4d4d4;
    margin-bottom: 45px;
    font-weight: 300;
}

.limited-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.limited-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.limited-feature-item svg {
    color: var(--luxury-gold);
}

.limited-feature-item span {
    font-size: 0.8rem;
    color: #d4d4d4;
    font-weight: 300;
    text-align: center;
}

.btn-limited-enhanced {
    display: inline-block;
    background: var(--luxury-gold);
    color: var(--luxury-dark);
    padding: 18px 50px;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--luxury-gold);
}

.btn-limited-enhanced:hover {
    background: transparent;
    color: var(--luxury-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .limited-content-enhanced h2 {
        font-size: 2rem;
    }

    .limited-features {
        flex-direction: column;
        gap: 25px;
    }

    .categories-grid-luxury-enhanced {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===================================
   CATEGORÍAS COMPACTAS
   =================================== */

.categories-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.category-card-compact {
    text-decoration: none;
    color: inherit;
    display: block;
    background: white;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
    overflow: hidden;
}

.category-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--luxury-gold);
}

.category-image-compact {
    aspect-ratio: 1;
    overflow: hidden;
}

.category-image-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card-compact:hover .category-image-compact img {
    transform: scale(1.05);
}

.category-content-compact {
    padding: 20px 15px;
    text-align: center;
}

.category-content-compact h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--luxury-dark);
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
}

.category-price-compact {
    font-size: 0.8rem;
    color: var(--luxury-gray);
    margin-bottom: 15px;
}

.btn-category {
    width: 100%;
    background: transparent;
    color: var(--luxury-dark);
    border: 1.5px solid var(--luxury-dark);
    padding: 10px 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-category:hover {
    background: var(--luxury-dark);
    color: white;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .categories-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .categories-grid-compact {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ===================================
   NOTIFICACIÓN CARRITO
   =================================== */

.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--luxury-dark);
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    font-size: 0.85rem;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cart-notification.show {
    transform: translateX(0);
}

.cart-notification::before {
    content: "✓";
    display: inline-block;
    margin-right: 10px;
    color: var(--luxury-gold);
    font-weight: bold;
}
/* FIX PARA CLICS EN ICONOS */
.cart-icon svg,
.cart-fab svg {
    pointer-events: none;
}

.cart-icon *,
.cart-fab * {
    pointer-events: none;
}



.cart-icon {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--luxury-dark);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cart-fab:hover {
    transform: scale(1.1);
    background: var(--luxury-gold);
    color: var(--luxury-dark);
}

.cart-count,
.cart-fab-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

/* DRAWER DEL CARRITO */
.cart-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cart-drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.cart-drawer-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.cart-drawer-close:hover {
    color: #000;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #e8e8e8;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.cart-item-price {
    color: var(--luxury-gold);
    font-weight: 600;
    margin: 5px 0;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cart-item-quantity button {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-weight: 600;
}

.cart-item-quantity button:hover {
    background: #f5f5f5;
}

.cart-item-quantity span {
    min-width: 30px;
    text-align: center;
}

.cart-item-remove {
    position: absolute;
    top: 10px;
    right: 0;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    width: 25px;
    height: 25px;
    line-height: 1;
}

.cart-item-remove:hover {
    color: #e74c3c;
}

.cart-drawer-footer {
    padding: 20px;
    border-top: 2px solid #e8e8e8;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-checkout {
    width: 100%;
    background: var(--luxury-dark);
    color: white;
    border: none;
    padding: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-checkout:hover {
    background: var(--luxury-gold);
    color: var(--luxury-dark);
}

/* NOTIFICACIÓN */
.cart-notification {
    position: fixed;
    top: 100px;
    right: -400px;
    background: var(--luxury-dark);
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 10000;
    transition: right 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cart-notification.show {
    right: 20px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .cart-drawer {
        width: 100%;
    }
}

/* ===================================
   BREADCRUMB LUXURY
   =================================== */

.breadcrumb-luxury {
    background: #f8f7f4;
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
}

.breadcrumb-luxury .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.breadcrumb-luxury a {
    color: var(--luxury-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-luxury a:hover {
    color: var(--luxury-gold);
}

.breadcrumb-luxury svg {
    color: #ccc;
}

.breadcrumb-luxury span {
    color: var(--luxury-dark);
    font-weight: 500;
}

/* ===================================
   COLLECTION HERO
   =================================== */

.collection-hero {
    background: linear-gradient(135deg, #f8f7f4 0%, #ffffff 100%);
    padding: 60px 0;
    border-bottom: 1px solid #e8e8e8;
}

.collection-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.collection-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--luxury-dark);
    margin-bottom: 20px;
}

.collection-hero p {
    font-size: 1.05rem;
    color: var(--luxury-gray);
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 300;
}

.collection-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #e8e8e8;
    border-radius: 30px;
    background: white;
}

.feature-badge svg {
    color: var(--luxury-gold);
}

.feature-badge span {
    font-size: 0.8rem;
    color: var(--luxury-dark);
    font-weight: 500;
}

/* ===================================
   COLLECTION PRODUCTS
   =================================== */

.collection-products {
    padding: 80px 0;
}

/* ACTIVE NAV LINK */
.main-nav a.active {
    color: var(--luxury-gold);
    border-bottom: 2px solid var(--luxury-gold);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .collection-hero h1 {
        font-size: 2rem;
    }

    .collection-hero p {
        font-size: 0.95rem;
    }

    .collection-features {
        flex-direction: column;
        align-items: center;
    }

    .breadcrumb-luxury {
        font-size: 0.75rem;
    }
}

/* FOOTER LUXURY */
.site-footer-luxury {
    background: #0a0608;
    border-top: 1px solid rgba(241, 200, 75, 0.15);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-grid-luxury {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col-luxury h3 {
    font-family: var(--font-title, 'Cormorant Garamond', serif);
    font-size: 1.5rem;
    color: var(--color-cream, #f9f5f0);
    margin: 0 0 1rem;
}

.footer-col-luxury h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gold-soft, #f7e3a1);
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col-luxury p {
    font-size: 0.9rem;
    color: var(--color-text-muted, #c0b6c6);
    line-height: 1.6;
    margin: 0 0 0.5rem;
}

.footer-col-luxury a {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted, #c0b6c6);
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.2s ease;
}

.footer-col-luxury a:hover {
    color: var(--color-gold, #f1c84b);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(241, 200, 75, 0.1);
    color: var(--color-gold, #f1c84b);
    font-weight: 600;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: rgba(241, 200, 75, 0.2);
    transform: translateY(-2px);
}

.footer-bottom-luxury {
    border-top: 1px solid rgba(241, 200, 75, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-luxury p {
    font-size: 0.85rem;
    color: var(--color-text-muted, #999);
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-legal a {
    color: var(--color-text-muted, #999);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--color-gold, #f1c84b);
}

.footer-legal span {
    color: var(--color-text-muted, #666);
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid-luxury {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-grid-luxury {
        grid-template-columns: 1fr;
    }

    .footer-bottom-luxury {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Badge de descuento/sale */
.product-badge--sale {
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.4);
}

/* Precio tachado */
.product-price-old {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    margin: 0 0 4px;
}

/* Hero especial para ofertas */
.collection-hero--special {
    background: radial-gradient(circle at 30% 20%, #3a1f2d 0%, #0b060f 60%);
    position: relative;
}

.collection-hero--special::before {
    content: '🔥';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 4rem;
    opacity: 0.1;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZATIONS
   ============================================ */

/* Tablets y dispositivos medianos (≤ 1024px) */
@media (max-width: 1024px) {
    .header-container {
        padding: 1rem 1.5rem;
    }

    .main-nav {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .collection-hero-content h1 {
        font-size: 2.5rem;
    }

    .products-grid-luxury {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .footer-grid-luxury {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Tablets pequeñas (≤ 768px) */
@media (max-width: 768px) {

    /* TOP RIBBON - Scroll horizontal suave */
    .top-ribbon {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .top-ribbon::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    .top-ribbon span {
        padding: 0 1rem;
    }

    /* HEADER - Hamburger menu */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(10, 6, 8, 0.98);
        backdrop-filter: blur(10px);
    }

    .header-container {
        padding: 0.8rem 1rem;
    }



    /* Navegación mobile */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #1a0f15 0%, #0a0608 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        z-index: 9999;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(241, 200, 75, 0.1);
        font-size: 1rem;
    }

    .main-nav a:hover {
        transform: translateX(5px);
        padding-left: 0.5rem;
    }

    /* Hamburger button */
    .hamburger-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 28px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10000;
        position: relative;
    }

    .hamburger-btn span {
        width: 100%;
        height: 2px;
        background: var(--color-gold, #f1c84b);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger-btn.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    /* Backdrop para el menú */
    .nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9998;
    }

    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    /* BREADCRUMB */
    .breadcrumb-luxury {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }

    .breadcrumb-luxury svg {
        width: 6px;
        height: 10px;
    }

    /* HERO DE CATEGORÍA */
    .collection-hero {
        padding: 2rem 0;
    }

    .collection-hero-content {
        text-align: center;
    }

    .collection-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .collection-hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .collection-features {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .feature-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* PRODUCTOS GRID */
    .products-section-luxury {
        padding: 2rem 0;
    }

    .products-grid-luxury {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card-luxury {
        padding: 0;
    }

    .product-image-luxury {
        border-radius: 12px 12px 0 0;
        margin-bottom: 0;
    }

    .product-info-luxury {
        padding: 1rem;
    }

    .product-info-luxury h3 {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .product-specs {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .product-price-luxury {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .product-price-old {
        font-size: 0.8rem;
    }

    .product-badge {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    .btn-add-luxury {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    /* FOOTER */
    .footer-grid-luxury {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col-luxury {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-luxury {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* CARRITO DRAWER */
    .cart-drawer {
        width: 100%;
        max-width: 100%;
    }

    /* CARRITO FAB - Más grande en móvil */
    .cart-fab {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }

    .cart-fab-count {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
}

/* Móviles pequeños (≤ 480px) */
@media (max-width: 480px) {


    .collection-hero-content h1 {
        font-size: 1.75rem;
    }

    .products-grid-luxury {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card-luxury {
        max-width: 400px;
        margin: 0 auto;
    }

    .cart-drawer-header h3 {
        font-size: 1.2rem;
    }

    .btn-checkout {
        font-size: 0.95rem;
        padding: 1rem;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .collection-hero {
        padding: 1.5rem 0;
    }

    .collection-hero-content h1 {
        font-size: 1.8rem;
    }

    .products-grid-luxury {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Touch optimizations */
@media (hover: none) and (pointer: coarse) {

    .btn-add-luxury,
    .cart-icon,
    .cart-drawer-close,
    .btn-checkout {
        min-height: 44px;
        /* Apple's recommended touch target */
        min-width: 44px;
    }

    .product-card-luxury {
        transition: transform 0.2s ease;
    }

    .product-card-luxury:active {
        transform: scale(0.98);
    }
}

/* Scroll suave global */
html {
    scroll-behavior: smooth;
}

/* Prevenir zoom en inputs en iOS */
input,
select,
textarea {
    font-size: 16px !important;
}

/* Better tap highlight */
* {
    -webkit-tap-highlight-color: rgba(241, 200, 75, 0.2);
}

/* Swipe gestures en el carrito drawer */
.cart-drawer {
    touch-action: pan-y;
}

/* ============================================
   LOGO - VERSIÓN ÚNICA
   ============================================ */

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-logo:hover {
    opacity: 0.9;
}

.site-logo img {
    height: 180px;
    width: 180px;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.site-logo:hover img {
    transform: scale(1.02);
}

/* ============================================
   HEADER - FONDO BLANCO
   ============================================ */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.main-nav a {
    color: #1a1a1a;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #C9A961;
}

.nav-special {
    color: #C9A961 !important;
}

/* ============================================
   TOP RIBBON - LUXURY MEJORADO
   ============================================ */

.top-ribbon {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #f1c84b;
    text-align: center;
    padding: 0.9rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    font-weight: 400;
    border-bottom: 1px solid rgba(241, 200, 75, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.top-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(241, 200, 75, 0.1),
            transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.top-ribbon-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ribbon-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.ribbon-item svg {
    width: 16px;
    height: 16px;
    color: #f1c84b;
    flex-shrink: 0;
}

.ribbon-separator {
    color: rgba(241, 200, 75, 0.3);
    font-weight: 300;
}

/* ============================================
   HAMBURGER BUTTON
   ============================================ */

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    position: relative;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background: #C9A961;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger-btn:hover span {
    background: #f1c84b;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}



/* Ocultar emoji del HTML */
.cart-icon svg,
.cart-icon span:not(.cart-count) {
    display: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet grande */
@media (max-width: 1400px) {
    .site-logo img {
        height: 150px;
        width: 150px;
    }
}

/* Tablet */
@media (max-width: 1200px) {
    .site-logo img {
        height: 120px;
        width: 120px;
    }
}

@media (max-width: 1024px) {
    .header-container {
        padding: 1.2rem 1.5rem;
    }

    .site-logo img {
        height: 100px;
        width: 100px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }

    .header-container {
        padding: 1rem 1rem;
    }

    .site-logo img {
        height: 80px;
        width: 80px;
    }

    .top-ribbon {
        padding: 0.75rem 1rem;
        font-size: 0.72rem;
    }

    .top-ribbon-content {
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .top-ribbon-content::-webkit-scrollbar {
        display: none;
    }

    .ribbon-item {
        gap: 0.4rem;
    }

    .ribbon-item svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .site-logo img {
        height: 70px;
        width: 70px;
    }

    .top-ribbon {
        font-size: 0.7rem;
        padding: 0.7rem 0.8rem;
    }

    .ribbon-separator {
        display: none;
    }
}

@media (max-width: 360px) {
    .site-logo img {
        height: 60px;
        width: 60px;
    }
}