.container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 1100px;
    margin: 20px 0 20px 40px;
}

.cart-right {
    order: -1;
    width: 210px;
}

.listCart {
    width: calc(100% - 340px);
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.listCart h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.listCart table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.listCart thead {
    background-color: #f9fafb;
}

.listCart th,
.listCart td {
    text-align: center;
    padding: 12px 8px;
    border: 1px solid #333;
}

.listCart th {
    font-weight: bold;
    color: #333;
}

.listCart tbody tr:hover {
    background-color: #f1f1f1;
}

.listCart img {
    width: 80px;
    border-radius: 5px;
}

.listCart .delete-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
}

.listCart .delete-link:hover {
    text-decoration: underline;
}

.listCart .total-section {
    text-align: right;
    margin-top: 20px;
}

.listCart .place-order {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.listCart .place-order:hover {
    background-color: #45a049;
}

.info-box {
    background: linear-gradient(135deg, #00b4db, #0083b0);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 120px;
    overflow: hidden;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    animation: floatText 3s ease-in-out infinite;
}

@keyframes floatText {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}

.info-box p {
    font-size: 16px;
    margin: 10px 0;
    transition: transform 0.3s;
}

.info-box p:hover {
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}