.dfpu-product-categories {
    width: 100%;
    padding: 20px 0;
}

.dfpu-product-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.dfpu-product-category-card {
    display: block;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    text-decoration: none !important;
    color: inherit;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.dfpu-product-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.dfpu-product-category-image {
    width: 100%;
    aspect-ratio: 1 / 0.75;
    overflow: hidden;
    background: #f5f5f5;
}

.dfpu-product-category-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dfpu-product-category-card:hover
.dfpu-product-category-image img {
    transform: scale(1.06);
}

.dfpu-product-category-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    background: #f3f3f3;
}

.dfpu-product-category-content {
    padding: 18px;
}

.dfpu-product-category-content h2 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.3;
}

.dfpu-product-category-content p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.dfpu-product-category-count {
    display: block;
    font-size: 14px;
    font-weight: 600;
}


/* TABLET */

@media (max-width: 1024px) {

    .dfpu-product-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


/* MOBILE */

@media (max-width: 768px) {

    .dfpu-product-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .dfpu-product-category-content {
        padding: 14px;
    }

    .dfpu-product-category-content h2 {
        font-size: 16px;
    }

    .dfpu-product-category-content p {
        font-size: 13px;
    }

}


/* SMALL MOBILE */

@media (max-width: 420px) {

    .dfpu-product-category-grid {
        grid-template-columns: 1fr;
    }

}