.mc-3143-container {
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.mc-3143-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #E0E0E0;
    font-size: 1.125rem;
}

.mc-3143-items {
    margin-bottom: 1.5rem;
}

.mc-3143-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    position: relative;
}

.mc-3143-item-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
}

.mc-3143-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mc-3143-item-details {
    flex: 1;
    min-width: 0;
}

.mc-3143-item-name {
    margin: 0 0 0.5rem 0;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.mc-3143-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.mc-3143-item-price {
    font-size: 1rem;
    font-weight: 600;
}

.mc-3143-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0.25rem;
}

.mc-3143-qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: #5A48D6;
    color: #E0E0E0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.mc-3143-qty-btn:hover {
    background: #2A1B6A;
}

.mc-3143-qty-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    color: #E0E0E0;
    font-size: 0.875rem;
    font-weight: 600;
}

.mc-3143-qty-input:focus {
    outline: none;
}

.mc-3143-remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #E0E0E0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    transition: background 0.3s ease;
}

.mc-3143-remove-btn:hover {
    background: rgba(255, 0, 0, 0.3);
}

.mc-3143-coupon {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mc-3143-coupon-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(90, 72, 214, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #E0E0E0;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

.mc-3143-coupon-input::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

.mc-3143-coupon-input:focus {
    outline: none;
    border-color: #5A48D6;
}

.mc-3143-coupon-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    transition: background 0.3s ease;
}

.mc-3143-coupon-message {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    display: none;
}

.mc-3143-coupon-message.success {
    display: block;
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.mc-3143-coupon-message.error {
    display: block;
    background: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.mc-3143-totals {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.mc-3143-totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.mc-3143-totals-row.mc-3143-total {
    border-top: 1px solid rgba(90, 72, 214, 0.3);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
}

.mc-3143-express-checkout {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mc-3143-checkout-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

@media (max-width: 768px) {
    .mc-3143-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mc-3143-item-image {
        width: 100%;
        height: 200px;
    }
    
    .mc-3143-item-meta {
        width: 100%;
    }
    
    .mc-3143-remove-btn {
        top: 1rem;
        right: 1rem;
    }
}