

/* Start:/local/templates/lvov-studio/components/bitrix/sale.basket.basket/lvov_modern/style.css?17668490775317*/
/* Lvov Modern Cart Styles */

.lvov-cart-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    margin-top: 20px;
    font-family: 'Inter', 'Manrope', sans-serif;
}

/* --- Products List --- */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f9f9f9;
    padding: 10px;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-info {
    flex-grow: 1;
}

.item-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
    line-height: 1.4;
    text-decoration: none;
    display: block;
}

.item-title:hover {
    color: #DD0000;
}

.item-props {
    font-size: 13px;
    color: #888;
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.item-price {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    min-width: 100px;
    text-align: right;
}

.item-quantity {
    display: flex;
    align-items: center;
    background: #F5F5F7;
    border-radius: 8px;
    padding: 4px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #555;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.qty-btn:hover {
    color: #DD0000;
    transform: scale(1.05);
}

.qty-input {
    width: 40px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.item-delete {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
    background: transparent;
    border: none;
}

.item-delete:hover {
    background: #FFEBEE;
    color: #D00;
}


/* --- Sidebar (Sticky) --- */
.cart-sidebar {
    position: sticky;
    top: 90px;
    /* Offset for sticky header */
    height: fit-content;
}

.cart-summary {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.summary-row.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #222;
    font-weight: 800;
    font-size: 20px;
    align-items: flex-end;
}

.summary-total-val {
    font-size: 26px;
    color: #DD0000;
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 25px;
    padding: 16px;
    background: linear-gradient(135deg, #FF4B4B 0%, #DD0000 100%);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(221, 0, 0, 0.25);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(221, 0, 0, 0.35);
}

.coupon-block {
    margin-top: 25px;
}

.coupon-input-group {
    display: flex;
    gap: 8px;
}

.coupon-input {
    flex-grow: 1;
    background: #F5F5F7;
    border: 1px solid transparent;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.coupon-input:focus {
    background: #fff;
    border-color: #DD0000;
}

.btn-coupon {
    width: 40px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-coupon:hover {
    background: #DD0000;
}

/* --- Empty Cart --- */
.cart-empty {
    text-align: center;
    padding: 60px 0;
}

.cart-empty-icon {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.cart-empty-text {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

@media (max-width: 960px) {
    .lvov-cart-wrapper {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        position: static;
        order: -1;
        /* Show totals on top on mobile? Or bottom? Let's keep bottom usually, but maybe checkout button sticky? */
    }
}
/* End */


/* Start:/bitrix/components/bitrix/system.show_message/templates/.default/style.min.css?176002768151*/
font.errortext{color:red}font.notetext{color:green}
/* End */
/* /local/templates/lvov-studio/components/bitrix/sale.basket.basket/lvov_modern/style.css?17668490775317 */
/* /bitrix/components/bitrix/system.show_message/templates/.default/style.min.css?176002768151 */
