/* ============================================================
   MAIN CATEGORIES – podľa Figma špecifikácie
   ============================================================ */

.custom-footer__categories.extended {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 128px;
    gap: 32px;
    width: 100%;
    box-sizing: border-box;
    background: #FFFFFF;
}

.custom-footer__categories.extended h4 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: none;
}

.custom-footer__categories.extended h4::before {
    content: "HLAVNÉ KATEGÓRIE" !important;
    font-family: 'Inter', sans-serif !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: 40px !important;
    line-height: 48px !important;
    text-transform: uppercase !important;
    color: #14141F !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
}

.custom-main-categories-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    padding: 0;
    gap: 8px;
    width: 100%;
    max-width: 1664px;
    margin: 0 auto;
    border-radius: 16px;
}

.custom-main-category-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 24px;
    gap: 24px;
    min-width: 320px;
    height: 136px;
    flex: 1;
    background: #FFFFFF;
    border: 1px solid #B7B7CF;
    border-radius: 16px;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-main-category-item:hover {
    border-color: #CD0E1D;
    box-shadow: 0 4px 16px rgba(205, 14, 29, 0.1);
}

.custom-main-category-img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.custom-main-category-title {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    display: flex;
    align-items: center;
    color: #14141F;
    order: 1;
    flex-grow: 1;
}

.custom-main-category-item::after {
    content: '';
    display: flex;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #CD0E1D;
    border-radius: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M10 8L6 4M10 8L6 12' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex: none;
    order: 2;
    flex-grow: 0;
}

/* ── Responzívnosť ── */
@media (max-width: 1280px) {
    .custom-footer__categories.extended {
        padding: 48px 32px;
    }
}

@media (max-width: 1024px) {
    .custom-main-category-item {
        min-width: 280px;
    }
}

@media (max-width: 640px) {
    .custom-footer__categories.extended {
        padding: 32px 16px;
        gap: 24px;
    }

    .custom-main-categories-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .custom-main-category-item {
        min-width: unset !important;
        width: 100% !important;
        flex: none !important;
        height: 96px;
        padding: 16px 20px;
        gap: 16px;
    }

    .custom-main-category-img {
        width: 64px;
        height: 64px;
    }

    .custom-main-category-title {
        font-size: 18px;
        line-height: 24px;
    }
}