.product-card-item {
    display: flex;
    min-height: 408px;
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(66, 66, 66, 0.1);
    border-radius: 8px;
    background: #fff;
    color: #424242;
    font-family: "Fira Sans", Arial, sans-serif;
    box-sizing: border-box;
}

.product-card-item:hover {
    box-shadow: 0 10px 15.75px rgba(0, 54, 120, 0.1);
}

.product-card-item__link {
    display: flex;
    min-height: 0;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.product-card-item__image-wrap {
    display: flex;
    height: 211px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #fff;
}

.product-card-item__image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card-item__name {
    display: block;
    min-height: 58px;
    color: #424242;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.product-card-item__name-note {
    display: block;
    margin-top: 4px;
}

.product-card-item__offer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-card-item__price {
    color: #004dac;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.product-card-item__currency {
    color: rgba(66, 66, 66, 0.5);
}

.product-card-item__bottle-price {
    color: rgba(66, 66, 66, 0.65);
    font-size: 14px;
    line-height: 1.2;
}

.product-card-item__bottom {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: auto;
}

.product-card-item__quantity {
    display: grid;
    width: 76px;
    height: 39px;
    grid-template-columns: 24px 1fr 24px;
    align-items: center;
    flex: 0 0 76px;
    border-radius: 8px;
    background: #f5f5f5;
    overflow: hidden;
}

.product-card-item__quantity-button {
    display: flex;
    width: 24px;
    height: 39px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(66, 66, 66, 0.5);
    cursor: pointer;
}

.product-card-item__quantity-input {
    width: 28px;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #424242;
    font-size: 16px;
    font-weight: 500;
    line-height: 39px;
    text-align: center;
    appearance: textfield;
}

.product-card-item__quantity-input::-webkit-outer-spin-button,
.product-card-item__quantity-input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.product-card-item__cart-wrap {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
}

.product-card-item .product-card-item__cart-button.button,
.product-card-item .product-card-item__basket-link.button {
    display: flex;
    width: 100%;
    height: 39px;
    min-height: 39px;
    align-items: center;
    justify-content: center;
    float: none;
    margin: 0;
    padding: 0 14px;
    border: 1px solid #004dac;
    border-radius: 8px;
    background: #004dac;
    color: #fff;
    font-family: "Fira Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
}

.product-card-item .product-card-item__cart-button.button:hover,
.product-card-item .product-card-item__cart-button.button:focus-visible,
.product-card-item .product-card-item__cart-button.button.active,
.product-card-item .product-card-item__basket-link.button:hover,
.product-card-item .product-card-item__basket-link.button:focus-visible,
.product-card-item .product-card-item__basket-link.button.active {
    border-color: #003678;
    background: #003678;
    color: #fff;
}

.product-card-item .product-card-item__cart-button.button:disabled,
.product-card-item .product-card-item__cart-button.button.loading {
    opacity: 0.75;
    cursor: wait;
}

.product-card-item .product-card-item__basket-link.button {
    display: none;
}

.product-card-item .product-card-item__basket-link.button.active {
    display: flex;
}

@media (max-width: 1023px) {
    .product-card-item {
        min-height: 396px;
    }
}
