.category-container {
    background: #fff;
    padding: 0 10px;
    border-top: 1px solid #eee;
}

.category-scroll-wrapper {
    max-width: 1320px;
    margin: 0 auto;
}

.category-item {
    position: relative;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 14px 0;
    color: #000000;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: .2s;
}

.category-link:hover {
    color: var(--brand-primary);
}

.category-caret {
    font-size: 10px;
    color: #434343;
    transition: .2s;
}

.category-item:hover .category-caret {
    transform: rotate(180deg);
}

.category-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    border: 1px solid #eee;
    overflow: hidden;
    display: none;
    z-index: 3000;
}

.category-item:hover .category-dropdown {
    display: block;
}

.category-dropdown a {
    display: block;
    padding: 12px 18px;
    color: #555;
    text-decoration: none;
}

.category-dropdown a:hover {
    background: #fafafa;
    color: var(--brand-primary);
}

/************ HOME CATEGORIAS **************/
.home-categories {
    padding: 70px 0;
    background: #f5f5f5;
    overflow: hidden;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
}

.categories-slider {
    position: relative;
    overflow: visible;
}

.categories-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollCategories 30s linear infinite;
}

.category-card {
    position: relative;
    width: 280px;
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    text-decoration: none;
}

.category-card img {
    width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
    transition: transform .4s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(206, 206, 206, 0.75) 0%, rgba(239, 239, 239, 0.4) 50%, rgba(0, 0, 0, 0.0) 100%);
    color: #000;
    /*text-shadow: 0px 0px 3px #606060;*/
}

.category-overlay h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.stars {
    color: var(--brand-primary);
    font-size: 0.95rem;
}

@keyframes scrollCategories {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .category-card {
        width: 220px;
        height: 280px;
    }

    .section-title {
        font-size: 1.6rem;
    }
}