        /* ---------- ESTILOS GLOBALES ---------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
        }

        body {
            background: #fcfcfc;
            min-height: 100vh;
        }

        /* ---------- HEADER ---------- */
        .header {
            background: #ffffff;
            padding: 1rem 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border-bottom: 4px solid #f5c518;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .brand-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e1e1e;
        }

        .brand-logo span {
            color: #b8860b;
            background: #f5c518;
            padding: 0 0.3rem;
            border-radius: 4px;
        }

        .brand-rif {
            font-size: 0.8rem;
            color: #666;
            background: #f5f5f5;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            border: 1px solid #f5c518;
        }

        .header-search {
            display: flex;
            gap: 0.5rem;
            flex: 1;
            max-width: 400px;
            min-width: 200px;
        }

        .header-search input {
            flex: 1;
            padding: 0.6rem 1.2rem;
            border: 2px solid #e0e0e0;
            border-radius: 60px;
            font-size: 0.95rem;
            transition: 0.15s;
            background: #fafafa;
        }

        .header-search input:focus {
            outline: none;
            border-color: #f5c518;
            background: white;
            box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2);
        }

        .header-search button {
            background: #f5c518;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 60px;
            font-weight: 600;
            color: #1e1e1e;
            cursor: pointer;
            transition: 0.15s;
            white-space: nowrap;
        }

        .header-search button:hover {
            background: #e0b012;
            transform: scale(1.02);
        }

        .header-cart {
            background: #f5f5f5;
            padding: 0.5rem 1.2rem;
            border-radius: 60px;
            font-weight: 600;
            color: #333;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border: 2px solid #f5c518;
        }

        .header-cart span {
            background: #f5c518;
            padding: 0.1rem 0.6rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        /* ---------- HERO / BANNER ---------- */
        .hero {
            background: linear-gradient(135deg, #ffffff 0%, #fffbe6 100%);
            padding: 3rem 2rem;
            text-align: center;
            border-bottom: 3px solid #f5c518;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 300;
            color: #1e1e1e;
            margin-bottom: 0.5rem;
        }

        .hero h1 strong {
            color: #b8860b;
            background: #f5c518;
            padding: 0 0.8rem;
            border-radius: 8px;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .hero .highlight {
            display: inline-block;
            background: #f5c518;
            padding: 0.2rem 1.2rem;
            border-radius: 60px;
            font-weight: 600;
            color: #1e1e1e;
            margin-top: 0.5rem;
        }

        /* ---------- FILTROS ---------- */
        .filters {
            max-width: 1300px;
            margin: 1.5rem auto 0;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }

        .filters-label {
            font-weight: 600;
            color: #555;
            font-size: 0.9rem;
        }

        .filter-btn {
            background: #ffffff;
            border: 2px solid #e0e0e0;
            padding: 0.4rem 1.2rem;
            border-radius: 60px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #555;
            cursor: pointer;
            transition: 0.15s;
        }

        .filter-btn:hover {
            border-color: #f5c518;
            color: #1e1e1e;
            background: #fffbe6;
        }

        .filter-btn.active {
            background: #f5c518;
            border-color: #f5c518;
            color: #1e1e1e;
            font-weight: 600;
        }

        /* ---------- GRID DE PRODUCTOS (Catálogo) ---------- */
        .catalog-container {
            max-width: 1300px;
            margin: 1.5rem auto;
            padding: 0 2rem 2rem;/* ---------- ESTILOS GLOBALES ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

body {
    background: #fcfcfc;
    min-height: 100vh;
}

/* ---------- HEADER ---------- */
.header {
    background: #ffffff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid #f5c518;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e1e1e;
}

.brand-logo span {
    color: #b8860b;
    background: #f5c518;
    padding: 0 0.3rem;
    border-radius: 4px;
}

.brand-rif {
    font-size: 0.8rem;
    color: #666;
    background: #f5f5f5;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    border: 1px solid #f5c518;
}

.header-search {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    max-width: 400px;
    min-width: 200px;
}

.header-search input {
    flex: 1;
    padding: 0.6rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 60px;
    font-size: 0.95rem;
    transition: 0.15s;
    background: #fafafa;
}

.header-search input:focus {
    outline: none;
    border-color: #f5c518;
    background: white;
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2);
}

.header-search button {
    background: #f5c518;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 60px;
    font-weight: 600;
    color: #1e1e1e;
    cursor: pointer;
    transition: 0.15s;
    white-space: nowrap;
}

.header-search button:hover {
    background: #e0b012;
    transform: scale(1.02);
}

.header-cart {
    background: #f5f5f5;
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #f5c518;
}

.header-cart span {
    background: #f5c518;
    padding: 0.1rem 0.6rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ---------- HERO / BANNER ---------- */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #fffbe6 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 3px solid #f5c518;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1e1e1e;
    margin-bottom: 0.5rem;
}

.hero h1 strong {
    color: #b8860b;
    background: #f5c518;
    padding: 0 0.8rem;
    border-radius: 8px;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.hero .highlight {
    display: inline-block;
    background: #f5c518;
    padding: 0.2rem 1.2rem;
    border-radius: 60px;
    font-weight: 600;
    color: #1e1e1e;
    margin-top: 0.5rem;
}

/* ---------- FILTROS ---------- */
.filters {
    max-width: 1300px;
    margin: 1.5rem auto 0;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.filters-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.filter-btn {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: 0.15s;
}

.filter-btn:hover {
    border-color: #f5c518;
    color: #1e1e1e;
    background: #fffbe6;
}

.filter-btn.active {
    background: #f5c518;
    border-color: #f5c518;
    color: #1e1e1e;
    font-weight: 600;
}

/* ---------- GRID DE PRODUCTOS (Catálogo) ---------- */
.catalog-container {
    max-width: 1300px;
    margin: 1.5rem auto;
    padding: 0 2rem 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid #f5c518;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(245, 197, 24, 0.2);
    border-color: #d4a812;
}

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid #f5c518;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image .sin-imagen {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 0.9rem;
}

.product-image .sin-imagen svg {
    width: 48px;
    height: 48px;
    stroke: #ccc;
}

.product-info {
    padding: 1rem 1.2rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.product-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1e1e1e;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.product-details {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.3rem;
}

.product-colors {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
    background: #fffbe6;
    padding: 0.1rem 0.6rem;
    border-radius: 30px;
    display: inline-block;
    align-self: flex-start;
    border: 1px solid #f5c518;
}

.product-price {
    font-weight: 700;
    font-size: 1.3rem;
    color: #1e1e1e;
    margin: 0.3rem 0 0.5rem;
}

.product-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: #888;
}

.btn-comprar {
    background: #f5c518;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1e1e1e;
    cursor: pointer;
    transition: 0.15s;
    width: 100%;
    margin-top: auto;
    border: 2px solid #d4a812;
}

.btn-comprar:hover {
    background: #e0b012;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(245, 197, 24, 0.3);
}

/* ---------- PIE DE PÁGINA ---------- */
.footer {
    background: #1e1e1e;
    color: #ccc;
    padding: 2rem 2rem 1.5rem;
    margin-top: 2rem;
    border-top: 4px solid #f5c518;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer h4 {
    color: #f5c518;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.footer p,
.footer li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aaa;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.3rem;
}

.footer ul li::before {
    content: "▸ ";
    color: #f5c518;
}

.footer-bottom {
    max-width: 1300px;
    margin: 1.5rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

.footer-bottom strong {
    color: #f5c518;
}

/* Notificación de añadido al carrito */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #1e1e1e;
    color: #fff;
    padding: 1rem 1.8rem;
    border-radius: 60px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-left: 5px solid #f5c518;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border: 2px solid #f5c518;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(245, 197, 24, 0.2);
            border-color: #d4a812;
        }

        .product-image {
            width: 100%;
            aspect-ratio: 1/1;
            background: #f7f7f7;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            border-bottom: 3px solid #f5c518;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-image .sin-imagen {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: #ccc;
            font-size: 0.9rem;
        }

        .product-image .sin-imagen svg {
            width: 48px;
            height: 48px;
            stroke: #ccc;
        }

        .product-info {
            padding: 1rem 1.2rem 1.2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            background: #ffffff;
        }

        .product-name {
            font-weight: 700;
            font-size: 1.05rem;
            color: #1e1e1e;
            margin-bottom: 0.2rem;
            line-height: 1.3;
        }

        .product-details {
            font-size: 0.8rem;
            color: #888;
            margin-bottom: 0.3rem;
        }

        .product-colors {
            font-size: 0.8rem;
            color: #666;
            margin-bottom: 0.5rem;
            background: #fffbe6;
            padding: 0.1rem 0.6rem;
            border-radius: 30px;
            display: inline-block;
            align-self: flex-start;
            border: 1px solid #f5c518;
        }

        .product-price {
            font-weight: 700;
            font-size: 1.3rem;
            color: #1e1e1e;
            margin: 0.3rem 0 0.5rem;
        }

        .product-price small {
            font-size: 0.8rem;
            font-weight: 400;
            color: #888;
        }

        .btn-comprar {
            background: #f5c518;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 0.95rem;
            color: #1e1e1e;
            cursor: pointer;
            transition: 0.15s;
            width: 100%;
            margin-top: auto;
            border: 2px solid #d4a812;
        }

        .btn-comprar:hover {
            background: #e0b012;
            transform: scale(1.02);
            box-shadow: 0 4px 12px rgba(245, 197, 24, 0.3);
        }

        /* ---------- PIE DE PÁGINA ---------- */
        .footer {
            background: #1e1e1e;
            color: #ccc;
            padding: 2rem 2rem 1.5rem;
            margin-top: 2rem;
            border-top: 4px solid #f5c518;
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .footer h4 {
            color: #f5c518;
            margin-bottom: 0.8rem;
            font-size: 1rem;
        }

        .footer p,
        .footer li {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #aaa;
        }

        .footer ul {
            list-style: none;
        }

        .footer ul li {
            margin-bottom: 0.3rem;
        }

        .footer ul li::before {
            content: "▸ ";
            color: #f5c518;
        }

        .footer-bottom {
            max-width: 1300px;
            margin: 1.5rem auto 0;
            padding-top: 1rem;
            border-top: 1px solid #333;
            text-align: center;
            font-size: 0.8rem;
            color: #888;
        }

        .footer-bottom strong {
            color: #f5c518;
        }

        /* Notificación de añadido al carrito */
        .toast {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #1e1e1e;
            color: #fff;
            padding: 1rem 1.8rem;
            border-radius: 60px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            border-left: 5px solid #f5c518;
        }

        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }
        /* ---------- MODAL DEL CARRITO ---------- */
        .cart-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: flex-end;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .cart-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .cart-modal {
            width: 100%;
            max-width: 400px;
            height: 100%;
            background: #ffffff;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .cart-modal-overlay.active .cart-modal {
            transform: translateX(0);
        }

        .cart-header {
            padding: 1.5rem;
            background: #1e1e1e;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 4px solid #f5c518;
        }

        .cart-header h3 {
            color: #f5c518;
            font-size: 1.2rem;
        }

        .cart-close-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            transition: 0.15s;
        }

        .cart-close-btn:hover {
            color: #f5c518;
        }

        .cart-body {
            flex: 1;
            padding: 1.5rem;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .cart-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }

        .cart-item img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 12px;
            border: 2px solid #f5c518;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-title {
            font-weight: 700;
            font-size: 0.95rem;
            color: #1e1e1e;
        }

        .cart-item-price {
            font-size: 0.85rem;
            color: #666;
            margin-top: 0.2rem;
        }

        .cart-item-controls {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.4rem;
        }

        .cart-item-controls button {
            background: #f5f5f5;
            border: 1px solid #ddd;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            font-weight: bold;
            cursor: pointer;
            transition: 0.15s;
        }

        .cart-item-controls button:hover {
            background: #f5c518;
            border-color: #f5c518;
        }

        .cart-item-remove {
            background: none;
            border: none;
            color: #ff4d4d;
            cursor: pointer;
            font-size: 0.85rem;
            margin-top: 0.2rem;
        }

        .cart-footer {
            padding: 1.5rem;
            background: #fcfcfc;
            border-top: 2px solid #f5c518;
        }

        .cart-total-row {
            display: flex;
            justify-content: space-between;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: #1e1e1e;
        }

        .btn-checkout {
            background: #f5c518;
            border: 2px solid #d4a812;
            padding: 0.8rem;
            width: 100%;
            border-radius: 60px;
            font-weight: 700;
            color: #1e1e1e;
            cursor: pointer;
            transition: 0.15s;
        }

        .btn-checkout:hover {
            background: #e0b012;
            transform: scale(1.02);
        }

        .header-cart {
            cursor: pointer;
            transition: 0.15s;
        }

        .header-cart:hover {
            border-color: #d4a812;
            background: #fffbe6;
        }
        
        .header-content {
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
    }

    .header-right-container {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.3rem;
    }

    .header-auth-links {
        font-size: 0.85rem;
    }

    .header-auth-links a {
        color: #b8860b;
        text-decoration: none;
        font-weight: 600;
    }

    .header-auth-links a:hover {
        text-decoration: underline;
    }