.category-box {
    position: relative;
    margin-top: 48px;
    margin-bottom: 30px;
}

.category-header {
    position: absolute;
    top: -48px;
    left: 25px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: var(--color-principal-blue);
    color: var(--ho-ho_white);
    padding: 5px 10px;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.category-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
    flex-grow: 1;
}

.category-product-item {
    display: flex;
    flex-direction: column;
    /* text-align: center; */
}

.category-product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 8px;
}

.category-product-title {
    font-size: 13px;
    margin-bottom: 5px;
    color: var(--ho-ho_black);
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.category-product-price {
    font-size: 12px;
    color: var(--ho-ho_black);
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

.category-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
}

.category-see-more {
    color: var(--ho-ho_lightgreen);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.category-see-more:hover {
    color: var(--ho-ho_darkgreen);
}

.see-all-card {
    background: var(--ho-ho_darkgrey);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    margin-top: 48px;
}

.see-all-content {
    text-align: center;
    color: var(--ho-ho_white);
}

.see-all-circles {
    margin-bottom: 20px;
}

.see-all-circles span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--ho-ho_white);
    border-radius: 50%;
    margin: 0 5px;
}

.see-all-link {
    color: var(--ho-ho_white);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s;
}

.see-all-link:hover {
    opacity: 0.8;
    color: var(--ho-ho_white);
}

.see-all-categories-mobile {
    display: none;
}

@media (max-width: 768px) {
    .category-products-grid {
        gap: 10px;
        padding: 15px;
    }

    .category-product-title {
        font-size: 12px;
    }

    .category-header {
        font-size: 16px;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .see-all-categories-container {
        display: none;
    }
    .see-all-categories-mobile {
        display: flex;
        justify-content: center;
    }
}
