.cart-section {
    width: 1180px;
    margin: 60px auto;
}

.cart-content {
    display: flex;
    gap: 40px;
}

.cart-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 10px;
}

.item-info {
    flex: 1;
}

.item-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.item-price {
    color: #FDA308;
    font-size: 18px;
    font-weight: bold;
}

.cart-item .quantity-selector {
    display: flex;
    gap: 10px;
    align-items: center;
}
.quantity-selector input {
    width: 40px;
    background: transparent;
    border: none;
    color: white;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #7B4DFF;
    border-radius: 5px;
    padding: 5px;
    margin: 0 10px;
    height: 50px;
    width: 50px;
    line-height: 50px;
}
.quantity-selector button {
    width: 50px;
    font-size: 24px;
}

.item-total {
    font-size: 24px;
    font-weight: bold;
    color: #FDA308;
    min-width: 100px;
    text-align: right;
}

.remove-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    padding: 0;
    font-size: 24px;
    background: rgba(255, 0, 0, 0.2);
    border-radius: 50%;
}

.remove-btn:hover {
    background: rgba(255, 0, 0, 0.5);
}

.cart-summary {
    width: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px;
    height: fit-content;
}

.cart-summary h2 {
    font-size: 28px;
    font-family: 'Bodoni MT Black';
    margin-bottom: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 16px;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.summary-row.total {
    font-size: 24px;
    font-weight: bold;
    color: #FDA308;
}

.checkout-btn {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
}

.continue-shopping {
    display: block;
    text-align: center;
    color: #7B4DFF;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.continue-shopping:hover {
    opacity: 0.7;
}

