.cart-container {
    padding: 120px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    min-height: 60vh;
}

.cart-title {
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.cart-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    margin-right: 20px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.cart-item-variant {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 5px 0;
}

.cart-item-price {
    font-size: 1rem;
    color: #f66464;
    font-weight: 700;
}

.remove-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s;
    line-height: 1;
}

.remove-btn:hover {
    color: #f66464;
}

.cart-summary {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 15px;
    text-align: right;
}

.total-row {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.loyalty-row {
    color: #f68f40;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.empty-cart {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.6);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1b1b1c;
    padding: 30px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: white;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.token-icon {
    width: 20px;
    height: 20px;
    vertical-align: -15%;
}