.dass-products-grid {
    max-width: 1200px;
    margin: 20px auto 45px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
    gap: 18px;
    font-family: inherit;
}

.dass-product-card {
    text-decoration: none !important;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dass-product-card:hover {
    transform: translateY(-3px);
    border-color: #FF5C15;
    box-shadow: 0 10px 15px -3px rgba(255, 92, 21, 0.12);
}

/* Золотой баланс высоты и отступов */
.dass-product-icon-wrapper {
    width: 100%;
    height: 160px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-sizing: border-box;
}

.dass-product-icon-wrapper img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.dass-product-card:hover .dass-product-icon-wrapper img {
    transform: scale(1.05);
}

.dass-product-footer {
    padding: 12px 16px 16px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f3f4f6;
}

.dass-product-title {
    font-size: 0.98rem;
    color: #111827;
    font-weight: 600;
    line-height: 1.3;
}

.dass-product-arrow {
    font-size: 1.15rem;
    color: #FF5C15;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.dass-product-card:hover .dass-product-arrow {
    transform: translateX(4px);
}

/* Адаптив для мобилок */
@media (max-width: 600px) {
    .dass-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .dass-product-icon-wrapper {
        height: 125px;
        padding: 6px;
    }

    .dass-product-title {
        font-size: 0.88rem;
    }
}