.snps-section {
    --snps-navy: #3f4568;
    --snps-red: #d20d16;
    --snps-teal: #26a88f;
    --snps-border: #e5e8ef;
    --snps-muted: #979797;
    width: 100%;
    max-width: none;
    font-family: inherit;
}

.snps-section .snps-grid {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    gap: 24px;
    align-items: stretch;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

.snps-section .snps-card {
    position: relative;
    display: flex !important;
    width: calc((100% - 96px) / 5) !important;
    max-width: none !important;
    min-width: 0;
    min-height: 456px;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    flex: 0 0 calc((100% - 96px) / 5) !important;
    flex-direction: column !important;
    background: #fff;
    border: 1px solid var(--snps-border);
    border-radius: 15px 15px 52px 15px;
}

.snps-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 13px;
    padding: 10px 7px;
    color: #fff;
    background: var(--snps-teal);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.snps-section .snps-image-link {
    display: flex !important;
    width: 100% !important;
    height: 300px;
    padding: 28px 24px 5px;
    align-items: center;
    justify-content: center;
}

.snps-image-link img.snps-image {
    width: 100%;
    height: 100%;
    max-width: 245px;
    object-fit: contain;
    transition: transform .25s ease;
}

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

.snps-section .snps-card-body {
    display: flex !important;
    width: 100% !important;
    padding: 10px 25px 28px;
    flex: 1;
    flex-direction: column;
}

.snps-product-title {
    margin: 0 0 10px;
    color: var(--snps-navy);
    font-family: inherit;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.55;
}

.snps-product-title a {
    color: inherit;
    text-decoration: none;
}

.snps-price {
    margin-top: auto;
    color: var(--snps-muted);
    font-size: 18px;
    line-height: 1.3;
}

.snps-price .amount {
    color: inherit;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.snps-price del {
    opacity: .65;
}

.snps-price ins {
    text-decoration: none;
}

@media (max-width: 1200px) {
    .snps-section .snps-grid {
        gap: 24px !important;
        overflow: visible !important;
        flex-wrap: wrap !important;
    }
    .snps-section .snps-card {
        width: calc((100% - 24px) / 2) !important;
        min-width: 0 !important;
        flex: 0 0 calc((100% - 24px) / 2) !important;
    }
    .snps-section .snps-card:nth-child(n+5) {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .snps-section .snps-grid {
        gap: 12px !important;
        overflow: visible !important;
        padding: 0 !important;
        flex-wrap: wrap !important;
    }
    .snps-section .snps-card {
        width: calc((100% - 12px) / 2) !important;
        min-width: 0 !important;
        min-height: 310px;
        flex: 0 0 calc((100% - 12px) / 2) !important;
        border-radius: 12px 12px 35px 12px;
    }
    .snps-section .snps-image-link {
        height: 190px;
        padding: 18px 12px 4px;
    }
    .snps-section .snps-card-body { padding: 7px 13px 19px; }
    .snps-product-title {
        font-size: 16px;
        line-height: 1.4;
    }
    .snps-price { font-size: 15px; }
    .snps-badge {
        top: 8px;
        left: 8px;
        padding: 7px 5px;
        font-size: 10px;
    }
}
