.ordered-block-kit {
    margin: 3.133rem 0px 3.133rem;
}

.block-title-kit {
    font-size: 1.3333em;
    line-height: 1.4em;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.kit-items-wrapper {
    border: 1px solid #ececec;
    border-radius: 3px;
    padding: 1.26rem;
}

.kit-items-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -16px;
    margin-right: -16px;
}

.kit-item {
    position: relative;
    min-height: 1px;
    padding-left: 16px;
    padding-right: 16px;
    width: 25%;
    margin-bottom: 20px;
}

.kit-item-image {
    margin-bottom: 15px;
    position: relative;
}

.kit-item-image img {
    max-width: 100%;
    height: auto;
}

.kit-item-quantity {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #1d7656;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
}

.kit-item-name {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin: 10px 0;
    font-weight: 500;
}

.kit-item-price-label {
    font-size: 0.867em;
    color: #999;
    margin-bottom: 5px;
}

.kit-item-prices {
    display: flex;
    flex-direction: column;
}

.kit-item-price-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.kit-item-price-current {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
}

.kit-item-title {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin: 10px 0;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.kit-item-image-link {
    display: block;
    position: relative;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.kit-item-image-link:hover {
    opacity: 0.8;
}

.kit-item-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kit-item-title-link:hover {
    color: #007bff; /* или любой другой цвет для ховера */
}

@media (max-width: 991px) {
    .kit-item {
        width: 33.333%;
    }
}

@media (max-width: 768px) {
    .kit-item {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .kit-item {
        width: 100%;
    }
    
    .kit-items-wrapper {
        padding: 1rem;
    }
} 