/* Home Category Showcase */
.hcs-home-categories {
    width: 100%;
    background: #fff4d8;
    padding: clamp(45px, 5vw, 78px) 0 clamp(55px, 5.5vw, 85px);
    margin: 0;
}

.hcs-container {
    width: min(90%, 1710px);
    margin: 0 auto;
}

.hcs-title {
    margin: 0 0 clamp(28px, 3vw, 36px);
    color: #000000;
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hcs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 2.4vw, 32px);
    align-items: start;
}

.hcs-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hcs-image-link {
    display: block;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    text-decoration: none !important;
}

.hcs-category-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.hcs-category-card:hover .hcs-category-image {
    transform: scale(1.035);
}

.hcs-category-name {
    margin: 17px 0 8px;
    color: #000000;
    font-size: clamp(18px, 1.45vw, 23px);
    font-weight: 800;
    line-height: 1.25;
}

.hcs-category-name a {
    color: inherit !important;
    text-decoration: none !important;
}

.hcs-category-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #000000 !important;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 400;
    line-height: 1.3;
    text-decoration: none !important;
}

.hcs-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.hcs-category-link:hover .hcs-arrow {
    transform: translateX(3px);
}

@media (max-width: 1199.98px) {
    .hcs-container {
        width: min(92%, 1100px);
    }

    .hcs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 28px;
    }
}

@media (max-width: 575.98px) {
    .hcs-home-categories {
        padding: 38px 0 50px;
    }

    .hcs-container {
        width: min(92%, 420px);
    }

    .hcs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
