
/* --- Elegant Modern Redesign: Basket Page --- */
.basket-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 32px 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
}
.basket-item-details {
    display: flex;
    flex-direction: column;
}
.item-info {
    margin-bottom: 12px;
}
.item-info p {
    margin: 6px 0;
    color: #444;
    font-size: 1rem;
}
.input-meters {
    margin: 12px 0;
    display: flex;
    align-items: center;
}
.input-meters input {
    width: 80px;
    padding: 8px;
    margin-right: 10px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #e3e3e3;
    background: #f8f9fa;
}
.input-meters span {
    font-size: 1rem;
    color: #222;
}
.amount-controls {
    display: flex;
    align-items: center;
    margin-top: 12px;
    gap: 8px;
}
.amount-controls button {
    background: linear-gradient(90deg, #0077b6 0%, #00b4d8 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.amount-controls button:hover {
    background: linear-gradient(90deg, #00b4d8 0%, #0077b6 100%);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.remove-item {
    color: #d9534f;
    cursor: pointer;
    font-weight: bold;
    margin-left: 12px;
}
#totalPrice {
    margin-top: 24px;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: right;
    color: #0077b6;
}
.pay-button {
    display: block;
    width: 220px;
    height: 56px;
    padding: 12px;
    background: linear-gradient(90deg, #0077b6 0%, #00b4d8 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 24px;
    margin-left: 60px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.pay-button:hover {
    background: linear-gradient(90deg, #00b4d8 0%, #0077b6 100%);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.agreement-text {
    font-size: 1rem;
    color: #555;
    margin-top: 12px;
}
.payment-container {
    text-align: center;
    margin-top: 24px;
}
.active[data-lang="en"] {
    display: none;
}
.active[data-lang="uk"] {
    display: block;
}
@media (max-width: 600px) {
    .basket-item {
        padding: 16px 8px;
    }
    .amount-controls {
        flex-direction: column;
        gap: 4px;
    }
    .pay-button {
        width: 100%;
        margin-left: 0;
    }
}
}
