/* Catálogo - Estilos adicionales */

.cart-hero.catalog-header {
    padding: 40px 0;
}

.catalog-search {
    background: var(--dark);
    border-bottom: 1px solid var(--border);
}

.catalog-categories {
    background: var(--dark-2);
}

.catalog-empty {
    text-align: center;
    padding: 60px 20px;
}

.catalog-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.catalog-empty h3 {
    color: var(--gold-light);
    margin-bottom: 10px;
}

.catalog-empty p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.toast-container {
    z-index: 1090;
}

.navbar-brand img {
    height: 70px;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gold);
    color: #0a0a0a;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
}

/* Floating Cart Button (Mobile Only) */
.floating-cart-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.5);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(201, 169, 110, 0.7);
}

.floating-cart-btn svg {
    color: var(--black);
}

.floating-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--black);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-header {
    padding: 40px 0;
}

.catalog-search {
    background: var(--dark);
    border-bottom: 1px solid var(--border);
}

.catalog-categories {
    background: var(--dark-2);
}
