.cart-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.cart-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.cart-empty {
    font-size: 1.2rem;
    margin-top: 30px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cart-item {
    display: grid;
    grid-template-columns: 140px 1fr 200px;
    align-items: center;
    gap: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.cart-image {
    aspect-ratio: 1;
}

.cart-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.cart-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: #f7f7f7;
    cursor: pointer;
    border-radius: 6px;
    font-size: 20px;
    transition: 0.2s;
}

.qty-btn:hover {
    background: #eee;
}

.qty-input {
    width: 55px;
    text-align: center;
    font-size: 1rem;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.cart-pricing {
    text-align: right;
}

.cart-price-per,
.cart-total-item {
    margin-bottom: 8px;
}

.cart-price-per .label,
.cart-total-item .label {
    color: #777;
}

.price-per-value,
.total-item-value {
    font-size: 1.1rem;
    font-weight: bold;
}

.remove-item {
    background: none;
    border: none;
    color: #d40000;
    cursor: pointer;
    margin-top: 10px;
    padding: 5px 0;
}

.remove-item:hover {
    text-decoration: underline;
}

.cart-summary {
    margin-top: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    max-width: 400px;
}

.cart-summary h3 {
    margin-bottom: 20px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    font-size: 1.3rem;
    font-weight: bold;
}


.checkout-btn {
    display: block;
    margin-top: 25px;
    background: #d40000;
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.2s;
    text-decoration: none;
}

.checkout-btn:hover {
    background: #b30000;
}

.top-bar {
    height: 10vh;
    display: flex;
    align-items: center;
    padding: 0 4vw;
    justify-content: space-between;
}

.top-bar a {
    color: #666666;
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--red);
    text-decoration: underline;
}

.info-bar {
    background-color: #ffda36a9;
    padding: 15px 20px;
    margin-bottom: 20px;
    color: #5a4a02;
}