/*.brand {
    display: flex;
    align-items: center;
    gap: 12px
}*/

/*.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), #ff9a8b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(255, 107, 107, 0.12);
}*/

/*.brand-name {
    font-weight: 700;
    font-size: 1.05rem
}*/


/* Categorías */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px 16px;
    margin-bottom: 24px;
    list-style-type: none;
    margin-left: 0;
    padding: 0;
}

.category {
    background: var(--card);
    border-radius: 12px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    justify-content: center;
    text-align: center;
    box-shadow: 0 6px 18px rgba(12, 15, 24, 0.04);
    cursor: pointer;
    transition: transform .14s ease, box-shadow .14s ease;
}

#categories .categoria-item {
    width: 160px;
    height: 160px;
    background-color: #8F0E57;
    color: white;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    font-weight: bold;
    font-size: 14px;
    flex-direction: column;
    justify-content: space-between;
}

#categories .categoria-image {
    margin-top: -32px;
}

/*.category:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(12, 15, 24, 0.08)
}

.cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff, #f2f2f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.cat-label {
    font-size: .85rem;
    color: var(--muted)
}*/





.more-row {
    display: flex;
    justify-content: center;
    margin-top: 12px
}

/* Marcas */
.brands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
    gap: 24px;
    margin: 16px;
    align-items: center;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.brand-card {
    background: var(--card);
    padding: 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 128px;
    box-shadow: 0 8px 22px rgba(12, 15, 24, 0.04);
    overflow: clip;
}

.brand-logo {
    font-weight: 600;
    color: var(--muted);
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.skeleton {
    background: linear-gradient(90deg, #E0E0E4 25%, #E4E4E6 37%, #E0E0E4 63%);
    background-size: 300% 100%;
    animation: skeleton-pulse 2s ease-in-out infinite;
    border-radius: 12px;
    min-height: 150px;
}

@keyframes skeleton-pulse {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/*
@keyframes pulse {
    to {
        background-position: -400% 0;
    }
}*/