.cart-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 10px;
}

/* Başlıq sətiri */
.cart-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 2px solid #ddd;
}

.cart-header div {
    flex: 1;
    text-align: center;
    border-right: 1px solid #ddd;
    padding: 0 10px;
}

.cart-header div:last-child {
    border-right: none;
}

.cart-header div:first-child {
    flex: 0.5;
    text-align: left;
}

.cart-header div:nth-child(2) {
    flex: 2;
    text-align: left;
}

/* Cart item-lər */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item div {
    flex: 1;
    text-align: center;
    border-right: 1px solid #eee;
    padding: 0 10px;
}

.cart-item div:last-child {
    border-right: none;
}

.cart-item div:first-child {
    flex: 0.5;
    text-align: left;
}

.cart-item div:nth-child(2) {
    flex: 2;
    text-align: left;
}

/* Remove düyməsi */
.remove-btn {
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 3px 8px;
    cursor: pointer;
}

.remove-btn:hover {
    background: #ff1a1a;
}


/* Sifariş düyməsi */
.order-btn {
    display: block;
    margin: 20px auto;
    background: #00c853;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.order-btn:hover {
    background: #00b14a;
}

.empty-cart {
    text-align: center;
    font-size: 18px;
    margin-top: 50px;
    color: #555;
}